From 5872d5908498e8aa175a18d090b0dff9fa2db633 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Mon, 23 Mar 2026 12:56:28 -0600 Subject: [PATCH] shell patch for nixremote --- modules/users/nixremote.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/users/nixremote.nix b/modules/users/nixremote.nix index 31508fd..5bf5119 100644 --- a/modules/users/nixremote.nix +++ b/modules/users/nixremote.nix @@ -2,6 +2,7 @@ lib, config, inputs, + pkgs, ... }: { @@ -36,6 +37,7 @@ isSystemUser = true; createHome = true; group = "nixremote"; + shell = pkgs.bashInteractive; openssh.authorizedKeys.keyFiles = config.my.users.nixremote.authorizedKeys; }; };