mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
32 lines
601 B
Nix
32 lines
601 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
config = lib.mkIf pkgs.stdenv.isDarwin {
|
|
|
|
users.users."${config.user}" = {
|
|
# macOS user
|
|
home = config.homePath;
|
|
shell = pkgs.fish; # Default shell
|
|
};
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
# Default shell setting doesn't work
|
|
home.sessionVariables = {
|
|
SHELL = "${pkgs.fish}/bin/fish";
|
|
};
|
|
|
|
# Used for aerc
|
|
xdg.enable = true;
|
|
};
|
|
|
|
# Fix for: 'Error: HOME is set to "/var/root" but we expect "/var/empty"'
|
|
home-manager.users.root.home.homeDirectory = lib.mkForce "/var/root";
|
|
};
|
|
}
|