dotfiles/modules/darwin/user.nix

9 lines
153 B
Nix
Raw Normal View History

2022-06-20 03:54:16 +00:00
{ config, pkgs, lib, ... }: {
2022-06-13 12:53:00 +00:00
2022-06-18 21:16:38 +00:00
users.users."${config.user}" = { # macOS user
home = config.homePath;
2022-06-13 12:53:00 +00:00
shell = pkgs.zsh; # Default shell
};
}