hurricane: 19 current 2025-06-17 16:17:34 25.05.20250615.6c64dab 6.15.2 *

This commit is contained in:
2025-06-17 16:17:36 +02:00
parent 1bbe3ef6f7
commit f538c04b0c
2 changed files with 12 additions and 7 deletions

View File

@ -57,20 +57,16 @@
};
};
outputs = {
self,
nixpkgs,
...
}: {
outputs = {nixpkgs, ...} @ inputs: {
nixosConfigurations = {
wildfire = nixpkgs.lib.nixosSystem {
specialArgs = {inputs = self.inputs // {inherit self;};};
specialArgs = {inherit inputs;};
modules = [
./hosts/wildfire/configuration.nix
];
};
hurricane = nixpkgs.lib.nixosSystem {
specialArgs = {inputs = self.inputs // {inherit self;};};
specialArgs = {inherit inputs;};
modules = [
./hosts/hurricane/configuration.nix
];