infrastructure/nixos/templates/proxmox-vm.nix
2023-01-07 12:52:42 +01:00

29 lines
589 B
Nix

{ config, pkgs, lib, ... }: {
imports = [ ../common/common.nix ../common/generic-vm.nix ];
proxmox.qemuConf = {
virtio0 = "local-zsfs:vm-9999-disk-0";
cores = 1;
memory = 1024;
bios = "ovmf";
};
# Enable SSH
services.openssh = {
enable = true;
passwordAuthentication = false;
permitRootLogin = "yes";
openFirewall = true;
};
networking.hostName = lib.mkDefault "template";
time.timeZone = lib.mkDefault "Europe/Amsterdam";
networking.useDHCP = true;
system.stateVersion = "23.05";
users.users.root.initialPassword = "toor";
}