From d39ab4b5f23fe75d9f37d8fa82d4b8a15f043b2e Mon Sep 17 00:00:00 2001 From: Alex Mickelson Date: Sat, 7 Feb 2026 13:38:57 -0700 Subject: [PATCH] environment --- nix/home-server.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nix/home-server.nix b/nix/home-server.nix index c01b094..adb0547 100644 --- a/nix/home-server.nix +++ b/nix/home-server.nix @@ -344,7 +344,11 @@ BindReadOnlyPaths = [ "/nix/store" ]; - + Environment = [ + "SHELL=${pkgs.bash}/bin/bash" + "BASH=${pkgs.bash}/bin/bash" + ]; + Restart = lib.mkForce "always"; };