alejandra formatting

This commit is contained in:
2025-06-03 20:12:32 +02:00
parent 3b7e839d7b
commit 2ed72ee4b3
7 changed files with 64 additions and 44 deletions

View File

@ -10,11 +10,14 @@
# };
};
outputs = { self, nixpkgs }: {
outputs = {
self,
nixpkgs,
}: {
nixosConfigurations = {
wildfire = nixpkgs.lib.nixosSystem {
specialArgs = { inputs = self.inputs // { inherit self; }; };
modules = [ ./hosts/wildfire/configuration.nix ];
specialArgs = {inputs = self.inputs // {inherit self;};};
modules = [./hosts/wildfire/configuration.nix];
};
};
};