From 0fddacfc57b476959891ecb30efe9ac7edc99b0a Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Thu, 14 Aug 2025 18:54:56 +0200 Subject: [PATCH] deploy-rs: Use root user for ssh connection --- flake/hosts.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flake/hosts.nix b/flake/hosts.nix index da86c90..05c7951 100644 --- a/flake/hosts.nix +++ b/flake/hosts.nix @@ -25,8 +25,7 @@ let mkDeployNode = hostname: { inherit hostname; - user = "root"; - interactiveSudo = true; + sshUser = "root"; profiles.system.path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.${hostname};