Fix nixosConfigurations flake output

This commit is contained in:
Pim Kunis 2024-11-11 21:50:00 +01:00
parent d70a737bc2
commit 8c35cb9f61

View file

@ -2,8 +2,8 @@ inputs @ {
nixpkgs,
self,
...
}:
nixpkgs.lib.mapAttrs (name: {
}: {
nixosConfigurations = nixpkgs.lib.mapAttrs (name: {
system,
module,
}:
@ -14,4 +14,5 @@ nixpkgs.lib.mapAttrs (name: {
specialArgs = {
inherit inputs system self;
};
}) (import ./machines)
}) (import ./machines);
}