mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
9 lines
153 B
Nix
9 lines
153 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
users.users."${config.user}" = { # macOS user
|
|
home = config.homePath;
|
|
shell = pkgs.zsh; # Default shell
|
|
};
|
|
|
|
}
|