Remove non-ascii chars 🎨 #1

Merged
plasmagoat merged 1 commit from dannydannydanny/nixos-base-image:main into main 2025-06-09 22:01:01 +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";