feat: add tablets nix-surface2 and nix-surface3

This commit is contained in:
UGA Innovation Factory
2025-12-08 20:42:02 +00:00
committed by Hunter Halloran
parent 633d217b93
commit b20b1eb1b0

View File

@@ -110,4 +110,24 @@ in
inputs.nixos-hardware.nixosModules.microsoft-surface-go
];
};
nix-surface2 = mkHost {
hostName = "nix-surface2";
system = "x86_64-linux";
extraModules = [
./nix-surface.nix
../sw-kiosk.nix
inputs.nixos-hardware.nixosModules.microsoft-surface-go
];
};
nix-surface3 = mkHost {
hostName = "nix-surface3";
system = "x86_64-linux";
extraModules = [
./nix-surface.nix
../sw-kiosk.nix
inputs.nixos-hardware.nixosModules.microsoft-surface-go
];
};
}