nixos-config/machines.nix

26 lines
502 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";
};
2024-07-26 20:34:42 +02:00
fuyuki = {
machineType = "workstation";
nixpkgsUnstable = true;
system = "x86_64-linux";
enableHomeManager = true;
stateVersion = "22.05";
};
}