mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
zellij: use xdg.configHome on darwin
This commit is contained in:
committed by
Robert Helgesson
parent
47d6c3f652
commit
218503b691
@@ -7,11 +7,6 @@ let
|
||||
cfg = config.programs.zellij;
|
||||
yamlFormat = pkgs.formats.yaml { };
|
||||
|
||||
configDir = if pkgs.stdenv.isDarwin then
|
||||
"Library/Application Support/org.Zellij-Contributors.Zellij"
|
||||
else
|
||||
"${config.xdg.configHome}/zellij";
|
||||
|
||||
in {
|
||||
meta.maintainers = [ hm.maintainers.mainrs ];
|
||||
|
||||
@@ -51,12 +46,12 @@ in {
|
||||
|
||||
# Zellij switched from yaml to KDL in version 0.32.0:
|
||||
# https://github.com/zellij-org/zellij/releases/tag/v0.32.0
|
||||
home.file."${configDir}/config.yaml" = mkIf
|
||||
xdg.configFile."zellij/config.yaml" = mkIf
|
||||
(cfg.settings != { } && (versionOlder cfg.package.version "0.32.0")) {
|
||||
source = yamlFormat.generate "zellij.yaml" cfg.settings;
|
||||
};
|
||||
|
||||
home.file."${configDir}/config.kdl" = mkIf
|
||||
xdg.configFile."zellij/config.kdl" = mkIf
|
||||
(cfg.settings != { } && (versionAtLeast cfg.package.version "0.32.0")) {
|
||||
text = lib.hm.generators.toKDL { } cfg.settings;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user