From f4bf843db8765fda3a4629d9846c2edc458712eb Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 24 May 2024 04:53:52 -0400 Subject: flatten imports --- systems/nixos.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 systems/nixos.nix (limited to 'systems/nixos.nix') diff --git a/systems/nixos.nix b/systems/nixos.nix new file mode 100644 index 0000000..9f95f02 --- /dev/null +++ b/systems/nixos.nix @@ -0,0 +1,19 @@ +{self, ...}: { + flake = { + nixosConfigurations = let + inherit (self.lib) nixosSystem nixosSystemStable; + in { + glados = nixosSystem { + modules = [./glados]; + }; + + glados-wsl = nixosSystem { + modules = [./glados-wsl]; + }; + + atlas = nixosSystemStable { + modules = [./atlas]; + }; + }; + }; +} -- cgit v1.2.3