From e20f7462a7d98d5bfaa4d799c9c75a9319a33099 Mon Sep 17 00:00:00 2001 From: rotterdam Date: Tue, 2 May 2023 09:32:38 -0300 Subject: [PATCH] systemState bump, and enabled sftpServerExecutable --- hosts/common/nix.nix | 2 +- hosts/common/services.nix | 5 ++++- hosts/common/virtualisation.nix | 1 - 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/hosts/common/nix.nix b/hosts/common/nix.nix index 1d870ef..41d1034 100644 --- a/hosts/common/nix.nix +++ b/hosts/common/nix.nix @@ -16,5 +16,5 @@ }; }; - system.stateVersion = "22.05"; + system.stateVersion = "22.11"; } diff --git a/hosts/common/services.nix b/hosts/common/services.nix index ad52fa9..081860f 100644 --- a/hosts/common/services.nix +++ b/hosts/common/services.nix @@ -4,7 +4,10 @@ services = { fwupd.enable = true; fstrim.enable = true; - openssh.enable = true; tailscale.enable = true; + openssh = { + enable = true; + sftpServerExecutable = "internal-sftp"; + }; }; } diff --git a/hosts/common/virtualisation.nix b/hosts/common/virtualisation.nix index 7854d5d..a82cb9a 100644 --- a/hosts/common/virtualisation.nix +++ b/hosts/common/virtualisation.nix @@ -4,6 +4,5 @@ virtualisation.podman = { enable = true; dockerCompat = true; - defaultNetwork.settings = { dns_enabled = true; }; }; }