diff options
Diffstat (limited to 'systems/nixos.nix')
| -rw-r--r-- | systems/nixos.nix | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/systems/nixos.nix b/systems/nixos.nix index 9f95f02..2cd9b31 100644 --- a/systems/nixos.nix +++ b/systems/nixos.nix @@ -1,19 +1,16 @@ -{self, ...}: { +{ self, ... }: +{ flake = { - nixosConfigurations = let - inherit (self.lib) nixosSystem nixosSystemStable; - in { - glados = nixosSystem { - modules = [./glados]; - }; + nixosConfigurations = + let + inherit (self.lib) nixosSystem nixosSystemStable; + in + { + glados = nixosSystem { modules = [ ./glados ]; }; - glados-wsl = nixosSystem { - modules = [./glados-wsl]; - }; + glados-wsl = nixosSystem { modules = [ ./glados-wsl ]; }; - atlas = nixosSystemStable { - modules = [./atlas]; + atlas = nixosSystemStable { modules = [ ./atlas ]; }; }; - }; }; } |
