{ config, modulesPath, pkgs, inputs, ... }: { imports = [ (modulesPath + "/virtualisation/proxmox-lxc.nix") ../modules/core.nix ]; nix.settings.sandbox = false; proxmoxLXC = { manageNetwork = false; privileged = true; }; networking.hostName = "bootstrap"; users.users.alex.openssh.authorizedKeys.keys = [ # TODO: add your SSH public key here ]; users.users.root.openssh.authorizedKeys.keys = [ # TODO: add your SSH public key here ]; system.stateVersion = "25.11"; }