From 0de4a20aeaa4b0671623f61903ed2e40dff73556 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Fri, 11 Jul 2025 22:14:40 +0200 Subject: [PATCH] deyploy-rs: use own user for ssh --- flake/hosts.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake/hosts.nix b/flake/hosts.nix index 291bc4d..d8496a1 100644 --- a/flake/hosts.nix +++ b/flake/hosts.nix @@ -26,7 +26,8 @@ let mkDeployNode = hostName: { ${hostName} = { hostname = hostName; - sshUser = "root"; + user = "root"; + interactiveSudo = true; profiles.system.path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.${hostName};