mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
84d7fc9892
switch to using xdg so config is saved in home dir instead of ~/Library/Preferences/aerc/
18 lines
297 B
Nix
18 lines
297 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}.xdg.enable = true;
|
|
|
|
};
|
|
|
|
}
|