nixos-config/machines.nix

38 lines
740 B
Nix

{
london = {
type = "workstation";
nixpkgs = "unstable";
system = "x86_64-linux";
enableHomeManager = true;
stateVersion = "23.11";
localDeployment = true;
};
camelot = {
type = "server";
nixpkgs = "stable";
system = "x86_64-linux";
enableHomeManager = false;
stateVersion = "23.11";
localDeployment = false;
};
fuyuki = {
type = "workstation";
nixpkgs = "unstable";
system = "x86_64-linux";
enableHomeManager = true;
stateVersion = "22.05";
localDeployment = true;
};
okeanos = {
type = "server";
nixpkgs = "stable";
system = "aarch64-linux";
enableHomeManager = false;
stateVersion = "23.05";
localDeployment = false;
};
}