Fix nixosConfigurations flake output
This commit is contained in:
parent
d70a737bc2
commit
8c35cb9f61
1 changed files with 4 additions and 3 deletions
|
@ -2,8 +2,8 @@ inputs @ {
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
self,
|
self,
|
||||||
...
|
...
|
||||||
}:
|
}: {
|
||||||
nixpkgs.lib.mapAttrs (name: {
|
nixosConfigurations = nixpkgs.lib.mapAttrs (name: {
|
||||||
system,
|
system,
|
||||||
module,
|
module,
|
||||||
}:
|
}:
|
||||||
|
@ -14,4 +14,5 @@ nixpkgs.lib.mapAttrs (name: {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs system self;
|
inherit inputs system self;
|
||||||
};
|
};
|
||||||
}) (import ./machines)
|
}) (import ./machines);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue