Reorder settings in flake

This commit is contained in:
Manuel Thalmann 2024-05-01 19:13:25 +02:00
parent 92a4e3d332
commit 4141931c39

View file

@ -6,14 +6,7 @@
flake-utils.url = "github:numtide/flake-utils?ref=b1d9ab70662946ef0850d488da1c9019f3a9752a"; flake-utils.url = "github:numtide/flake-utils?ref=b1d9ab70662946ef0850d488da1c9019f3a9752a";
}; };
outputs = { self, nixpkgs, flake-utils }: outputs = { self, nixpkgs, flake-utils }: (
let
systems = [
{
name = "nixos";
}
];
in
flake-utils.lib.eachDefaultSystem ( flake-utils.lib.eachDefaultSystem (
system: system:
let let
@ -27,13 +20,18 @@
]; ];
}); });
} }
) // ) // {
nixosConfigurations =
let
systems = [
{ {
nixosConfigurations = builtins.listToAttrs name = "nixos";
( }
];
in
builtins.listToAttrs (
builtins.map ( builtins.map (
{ name, system ? "x86_64-linux", ... }@config: { name, system ? "x86_64-linux", ... }@config: {
{
inherit name; inherit name;
value = nixpkgs.lib.nixosSystem { value = nixpkgs.lib.nixosSystem {
@ -46,6 +44,7 @@
( (
let let
configCandidate = ./lib/machines/${name}.nix; configCandidate = ./lib/machines/${name}.nix;
machineConfigPath = machineConfigPath =
if builtins.pathExists configCandidate if builtins.pathExists configCandidate
then then
@ -58,5 +57,5 @@
}; };
}) })
systems); systems);
}; });
} }