feat: Add 2nd laptop nix-laptop2

This commit is contained in:
2025-12-04 09:52:49 -05:00
committed by Hunter Halloran
parent 1992407cb1
commit eaee8c652e
2 changed files with 9 additions and 1 deletions

View File

@@ -80,7 +80,15 @@ in
hostName = "nix-laptop1";
system = "x86_64-linux";
extraModules = [
./nix-laptop1.nix
./nix-laptop.nix
];
};
nix-laptop2 = mkHost {
hostName = "nix-laptop2";
system = "x86_64-linux";
extraModules = [
./nix-laptop.nix
];
};