summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-01-28 17:37:19 -0600
committerChristian <[email protected]>2026-01-28 17:37:19 -0600
commitffea2846e2de5da72c890d4e48118959857d122e (patch)
treec66fdcd2ea316dd75b4db0a02b8babfe381b2987 /flake.nix
parent011161b8149b96d3fe51ee6912f638060f720b91 (diff)
Barebones Laptop
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 478fc63..f68c1f0 100644
--- a/flake.nix
+++ b/flake.nix
@@ -26,6 +26,11 @@
specialArgs = { inherit inputs; };
modules = [ ./hosts/desktop/configuration.nix ];
};
+ laptop = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ specialArgs = { inherit inputs; };
+ modules = [ ./hosts/laptop/configuration.nix ];
+ };
};
};
}