fix: aerc doesn't recognize config file

This commit is contained in:
Noah Masur 2022-11-20 11:38:10 -07:00
parent 2848ae9424
commit 42237eab13

View File

@ -4,6 +4,12 @@
# 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"; };
};
}