This commit is contained in:
Emile Clark-Boman 2025-08-14 21:39:15 +10:00
commit 7afa83f31a
3 changed files with 57 additions and 0 deletions

29
flake.nix Normal file
View file

@ -0,0 +1,29 @@
# Template: https://nixos-and-flakes.thiscute.world/development/intro
{
description = "Dev Shell notsoeasykali";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
};
outputs = {
nixpkgs,
...
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in {
devShells."${system}".default = (pkgs.buildFHSEnv {
name = "notsoeasykali-env";
targetPkgs = pkgs: with pkgs; [
p7zip
squashfsTools
];
runScript = "bash";
}).env;
};
}