Nixos update 08-11-2025, add tailscale amaterasu

This commit is contained in:
Alexander
2025-11-08 14:13:01 +01:00
parent be88bb83ab
commit 3b2c4ddc88
3 changed files with 198 additions and 143 deletions
+12 -8
View File
@@ -91,15 +91,19 @@ in {
vault
];
services.openssh = {
enable = true;
settings = {
# Opinionated: forbid root login through SSH.
PermitRootLogin = "no";
# Opinionated: use keys only.
# Remove if you want to SSH using passwords
PasswordAuthentication = false;
services = {
openssh = {
enable = true;
settings = {
# Opinionated: forbid root login through SSH.
PermitRootLogin = "no";
# Opinionated: use keys only.
# Remove if you want to SSH using passwords
PasswordAuthentication = false;
};
};
tailscale.enable = true;
};
programs = {