From 4f1e52bca102d36b8c77b22a1a7822b67784275b Mon Sep 17 00:00:00 2001 From: Tobias Ostner Date: Sun, 18 Feb 2024 10:45:22 +0100 Subject: [PATCH] Set users shell to zshInteractive --- .config/nix/modules/host-users.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/nix/modules/host-users.nix b/.config/nix/modules/host-users.nix index 4d576af..e277761 100644 --- a/.config/nix/modules/host-users.nix +++ b/.config/nix/modules/host-users.nix @@ -1,4 +1,4 @@ -{ ... }@args: +{ pkgs, ... }: let hostname = "TobAir"; username = "tobi"; @@ -11,6 +11,7 @@ in users.users."${username}" = { home = "/Users/${username}"; description = "Tobias Ostner"; + shell = pkgs.zshInteractive; }; nix.settings.trusted-users = [ username ];