nixos-config/machines.nix

18 lines
335 B
Nix
Raw Normal View History

{
london = {
machineType = "workstation";
nixpkgsUnstable = true;
system = "x86_64-linux";
enableHomeManager = true;
stateVersion = "23.11";
};
2023-11-12 00:40:26 +01:00
camelot = {
machineType = "server";
nixpkgsUnstable = false;
system = "x86_64-linux";
enableHomeManager = false;
stateVersion = "23.11";
};
}