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