dotfiles/modules/darwin/user.nix

10 lines
158 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-10-31 18:45:51 +00:00
users.users."${config.user}" = {
# macOS user
home = config.homePath;
2022-10-31 18:45:51 +00:00
shell = pkgs.fish; # Default shell
2022-06-13 12:53:00 +00:00
};
}