summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-08-14 14:27:45 -0400
committertriethyl <triethylammonium@pm.me>2025-08-14 14:27:45 -0400
commit4abe382ce56716a245229f8d5f2bcebffa0cc790 (patch)
tree05a0f90ba1f57b797cbd864d6175895f077902bd /flake.nix
parentf54dad57d4705bb67da6f77b1423c0ed725c59e9 (diff)
added thinkpad-laptop to flake
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 097031d..7d9cd64 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,6 +8,7 @@
nixosConfigurations = {
"nzxt-desktop" = helper.mkSystem "nzxt-desktop" "x86_64-linux";
"ideapad-laptop" = helper.mkSystem "ideapad-laptop" "x86_64-linux";
+ "thinkpad-laptop" = helper.mkSystem "thinkpad-laptop" "x86_64-linux";
"prodesk-server" = helper.mkSystem "prodesk-server" "x86_64-linux";
"steam-deck" = helper.mkSystem "steam-deck" "x86_64-linux";
};
@@ -16,6 +17,7 @@
homeConfigurations = {
"culsans@nzxt-desktop" = helper.mkHome "culsans" "nzxt-desktop" "x86_64-linux";
"lucas@ideapad-laptop" = helper.mkHome "lucas" "ideapad-laptop" "x86_64-linux";
+ "lucas@thinkpad-laptop" = helper.mkHome "lucas" "thinkpad-laptop" "x86_64-linux";
"server@prodesk-server" = helper.mkHome "server" "prodesk-server" "x86_64-linux";
"culsans@steam-deck" = helper.mkHome "culsans" "steam-deck" "x86_64-linux";
};