From 81e28e7a4191ab86681c5015e3aaa6c411e1fafe Mon Sep 17 00:00:00 2001 From: RGBCube Date: Tue, 11 Mar 2025 00:05:33 +0300 Subject: [PATCH] fix: remove backup username when selecting ssh user --- modules/common/ssh/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/common/ssh/default.nix b/modules/common/ssh/default.nix index e78af53..fca23d2 100644 --- a/modules/common/ssh/default.nix +++ b/modules/common/ssh/default.nix @@ -9,8 +9,9 @@ user = value.config.users.users |> filterAttrs (_: value: value.isNormalUser) |> attrNames - |> remove "root" |> remove "backup" + |> remove "build" + |> remove "root" |> head; hostname = value.config.networking.ipv4.address;