diff options
Diffstat (limited to 'systems')
| -rw-r--r-- | systems/default.nix | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/systems/default.nix b/systems/default.nix index f708430..441628f 100644 --- a/systems/default.nix +++ b/systems/default.nix @@ -2,24 +2,7 @@ inputs, self, ... -}: let - nixos-stable = inputs.nixpkgs-stable.lib.nixosSystem; -in { - nixosConfigurations = { - glados = { - system = "x86_64-linux"; - }; - - glados-wsl = { - system = "x86_64-linux"; - }; - - atlas = { - builder = nixos-stable; - system = "aarch64-linux"; - }; - }; - +}: { darwinConfigurations = { caroline = { system = "x86_64-darwin"; @@ -33,4 +16,21 @@ in { "atlas" ]; }; + + nixosConfigurations = let + stable = inputs.nixpkgs-stable.lib.nixosSystem; + in { + glados = { + system = "x86_64-linux"; + }; + + glados-wsl = { + system = "x86_64-linux"; + }; + + atlas = { + builder = stable; + system = "aarch64-linux"; + }; + }; } |
