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

View File

@ -9,7 +9,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };
outputs = { self, nixpkgs, nixpkgs-stable, ... }: outputs = { self, nixpkgs, nixpkgs-stable, ... }:
let let
system = "x86_64-linux"; system = "x86_64-linux";
@ -17,12 +17,13 @@
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
pkgs-stable = nixpkgs-stable.legacyPackages.${system}; pkgs-stable = nixpkgs-stable.legacyPackages.${system};
in { in {
nixosConfigurations = { nixosConfigurations = {
poggers = lib.nixosSystem { poggers = lib.nixosSystem {
inherit system; inherit system;
modules = [ ./configuration.nix ]; modules = [ ./configuration.nix ];
specialArgs = { specialArgs = {
inherit pkgs-stable; inherit pkgs-stable;
};
}; };
}; };
}; };