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 ];