Merge branch 'master' of ssh://git.giugl.io/peperunas/nixos

This commit is contained in:
Giulio De Pasquale 2023-02-18 17:21:27 -08:00
commit da79b76e8d

View File

@ -11,14 +11,13 @@
inherit system; inherit system;
config.allowUnfree = true; config.allowUnfree = true;
}; };
lib = pkgs.lib;
shellWithPkgs = buildInputs: pkgs.mkShell { shellWithPkgs = packages: pkgs.mkShell {
inherit buildInputs; inherit packages;
}; };
in in
{ {
devShells.default = shellWithPkgs (lib.singleton pkgs.codeql); devShells.default = shellWithPkgs [ pkgs.hello ];
}); });
} }