Set users shell to zshInteractive

This commit is contained in:
Tobias Ostner 2024-02-18 10:45:22 +01:00
parent a3437be79d
commit 4f1e52bca1

View file

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