This commit is contained in:
meml0rz
2024-11-11 23:59:52 +01:00
parent 21524a85af
commit d25fe3dd4a

View File

@ -17,12 +17,13 @@
pkgs = nixpkgs.legacyPackages.${system};
pkgs-stable = nixpkgs-stable.legacyPackages.${system};
in {
nixosConfigurations = {
poggers = lib.nixosSystem {
inherit system;
modules = [ ./configuration.nix ];
specialArgs = {
inherit pkgs-stable;
nixosConfigurations = {
poggers = lib.nixosSystem {
inherit system;
modules = [ ./configuration.nix ];
specialArgs = {
inherit pkgs-stable;
};
};
};
};