upgrade nixpkgs to NixOS 23.11

This commit is contained in:
Alexander Tomokhov
2023-12-18 18:13:57 +04:00
parent b7045a8198
commit d881cc8ce5
8 changed files with 21 additions and 25 deletions

View File

@@ -35,7 +35,7 @@
services.do-agent.enable = if config.selfprivacy.server.provider == "digitalocean" then true else false;
boot.cleanTmpDir = true;
boot.tmp.cleanOnBoot = true;
networking = {
hostName = config.selfprivacy.hostname;
domain = config.selfprivacy.domain;
@@ -55,8 +55,10 @@
users.users.root.openssh.authorizedKeys.keys = config.selfprivacy.ssh.rootKeys;
services.openssh = {
enable = config.selfprivacy.ssh.enable;
passwordAuthentication = config.selfprivacy.ssh.passwordAuthentication;
permitRootLogin = "yes";
settings = {
PasswordAuthentication = config.selfprivacy.ssh.passwordAuthentication;
PermitRootLogin = "yes";
};
openFirewall = false;
};
programs.ssh = {