Whoops, small bug

main
kalle 2024-12-26 17:35:40 +01:00
parent bcec9a18c3
commit 817e896d9b
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
in
{
nixosConfigurations = nixpkgs.lib.mapAttrs (
hostname: value: (utils.mkSystem value // { inherit hostname; })
hostname: value: (utils.mkSystem (value // { inherit hostname; }))
) hosts;
};
}