diff --git a/configuration.nix b/configuration.nix index a2212d7..1c039ed 100644 --- a/configuration.nix +++ b/configuration.nix @@ -30,5 +30,11 @@ # Configure basic SSH access services.openssh.enable = true; - services.openssh.permitRootLogin = true; + services.openssh.permitRootLogin = "yes"; + + # Cleanup tmp on startup + boot.cleanTmpDir = true; + + # Set hostname + networking.hostName = "zion"; }