mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
16 lines
304 B
Nix
16 lines
304 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
users.users."${config.user}" = {
|
|
# macOS user
|
|
home = config.homePath;
|
|
shell = pkgs.fish; # Default shell
|
|
|
|
};
|
|
|
|
# Used for aerc
|
|
home-manager.users.${config.user} = {
|
|
home.sessionVariables = { XDG_CONFIG_HOME = "${config.homePath}/.config"; };
|
|
};
|
|
|
|
}
|