fix(nix): Explicitly specify configPath

This commit is contained in:
Ahmad Ansori Palembani 2025-03-16 06:56:47 +07:00
parent 18a6fb5ade
commit 21a50385fe
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -36,11 +36,11 @@ in {
platforms.linux = rec { platforms.linux = rec {
vendorPath = ".zen"; vendorPath = ".zen";
configPath = "${vendorPath}"; configPath = ".zen";
}; };
platforms.darwin = rec { platforms.darwin = rec {
vendorPath = "Library/Application Support/Zen"; vendorPath = "Library/Application Support/Zen";
configPath = "${vendorPath}"; configPath = "Library/Application Support/Zen";
}; };
}) })
]; ];