Autologin, passwordless sudo

This commit is contained in:
Fern Garden 2025-07-02 16:10:47 +08:00
parent a0d53b2db7
commit b9be0e96c4

View file

@ -21,6 +21,12 @@
];
};
# Auto login
services.getty.autologinUser = "docker";
# Passwordless sudo
security.sudo.wheelNeedsPassword = false;
# Enable SSH server
services.openssh.enable = true;