summaryrefslogtreecommitdiff
path: root/systems/nixos.nix
diff options
context:
space:
mode:
Diffstat (limited to 'systems/nixos.nix')
-rw-r--r--systems/nixos.nix19
1 files changed, 19 insertions, 0 deletions
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];
+ };
+ };
+ };
+}