mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
d021baa1bb
required because they don't share all attributes
22 lines
386 B
Nix
22 lines
386 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
|
|
|
|
};
|
|
|
|
# Used for aerc
|
|
home-manager.users.${config.user} = {
|
|
home.sessionVariables = {
|
|
XDG_CONFIG_HOME = "${config.homePath}/.config";
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
}
|