Compare commits

...

2 commits

Author SHA1 Message Date
32d407c6af Merge pull request 'Remove non-ascii chars 🎨' (#1) from dannydannydanny/nixos-base-image:main into main
Reviewed-on: #1
Reviewed-by: David Samuelsen <plasmagoat@noreply.git.procopius.dk>
2025-06-09 22:01:01 +02:00
46290db2be chore: remove non-ascii chars 🎨 2025-06-09 21:59:02 +02:00

View file

@ -2,7 +2,7 @@
{
# We rely on the QEMU Guest Agent profile so that Proxmox can talk
# to the VMs guest-agent.
# to the VM's guest-agent.
imports = [
# Enables QEMU Guest Agent support in the VM
(modulesPath + "/profiles/qemu-guest.nix")
@ -30,7 +30,7 @@
# Sudo: Do not require a password for wheel group
security.sudo.wheelNeedsPassword = false;
# OpenSSH: disable passwordbased auth, only allow keybased
# OpenSSH: disable password-based auth, only allow key-based
services.openssh = {
enable = true;
settings.PermitRootLogin = "prohibit-password";