9 lines
153 B
Nix
Raw Normal View History

2022-06-19 23:54:16 -04:00
{ config, pkgs, lib, ... }: {
2022-06-13 08:53:00 -04:00
2022-06-18 17:16:38 -04:00
users.users."${config.user}" = { # macOS user
home = config.homePath;
2022-06-13 08:53:00 -04:00
shell = pkgs.zsh; # Default shell
};
}