This commit is contained in:
2025-06-19 22:49:03 +02:00
parent 33211f4378
commit 4a80288d99

View File

@ -6,28 +6,24 @@
nixpkgs-unstable, nixpkgs-unstable,
home-manager, home-manager,
... ...
}: { }: let
nixosConfigurations = { specials = {
wildfire = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs; inherit inputs;
pkgs-unstable = import nixpkgs-unstable { pkgs-unstable = import nixpkgs-unstable {
system = "x86_64-linux"; system = "x86_64-linux";
config.allowUnfree = true; config.allowUnfree = true;
}; };
}; };
in {
nixosConfigurations = {
wildfire = nixpkgs.lib.nixosSystem {
specialArgs = specials;
modules = [ modules = [
./hosts/wildfire/configuration.nix ./hosts/wildfire/configuration.nix
]; ];
}; };
hurricane = nixpkgs.lib.nixosSystem { hurricane = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = specials;
inherit inputs;
pkgs-unstable = import nixpkgs-unstable {
system = "x86_64-linux";
config.allowUnfree = true;
};
};
modules = [ modules = [
./hosts/hurricane/configuration.nix ./hosts/hurricane/configuration.nix
]; ];