aerc: fix config paths on darwin

This commit is contained in:
Benjamin Lee 2023-10-22 01:49:52 -07:00 committed by GitHub
parent 81ab146262
commit 219d268a69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 7 deletions

View file

@ -4,7 +4,11 @@ with lib;
{
config = {
nmt.script = let dir = "home-files/.config/aerc";
nmt.script = let
dir = if pkgs.stdenv.isDarwin then
"home-files/Library/Preferences/aerc"
else
"home-files/.config/aerc";
in ''
assertFileContent ${dir}/accounts.conf ${./extraAccounts.expected}
assertFileContent ${dir}/binds.conf ${./extraBinds.expected}