1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2024-12-21 18:52:00 +01:00
parent 5b9fdb8172
commit 02cbfb215b
No known key found for this signature in database
2 changed files with 264 additions and 6 deletions

View file

@ -31,7 +31,16 @@
nixosConfigurations = self.lib.genNixosConfigurations {inherit inputs;};
};
perSystem = {pkgs, ...}: {
perSystem = {
pkgs,
system,
...
}: {
_module.args.pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
devenv.shells.default = {
devenv.root = let
devenvRootFileContent = builtins.readFile devenv-root.outPath;