infrastructure/nixos/templates/proxmox-lxc.nix
Vivian 78dfe88c65
Some checks failed
Lint / lint (push) Failing after 1s
Plex Update / update (push) Successful in 9s
fix infinite recursion
2023-05-31 16:45:10 +02:00

28 lines
535 B
Nix

{ lib, ... }: {
imports = [ ../common ../common/generic-lxc.nix ];
proxmoxLXC = {
manageNetwork = true;
manageHostName = true;
privileged = false;
};
# Enable SSH
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = true;
PermitRootLogin = "yes";
};
openFirewall = true;
};
networking.hostName = lib.mkDefault "template";
time.timeZone = lib.mkDefault "Europe/Amsterdam";
system.stateVersion = "23.05";
users.users.root.initialPassword = "toor";
}