init
This commit is contained in:
commit
7afa83f31a
3 changed files with 57 additions and 0 deletions
29
flake.nix
Normal file
29
flake.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue