mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
9f32c66a51
Support alternate configuration files for k9s in darwin where XDG is not mandated and k9s expects configuration files in `~/Library/Application Support/k9s/`.
17 lines
345 B
Nix
17 lines
345 B
Nix
{ pkgs, lib, ... }: {
|
|
|
|
programs.k9s.enable = true;
|
|
|
|
xdg.enable = lib.mkIf pkgs.stdenv.isDarwin (lib.mkForce false);
|
|
|
|
test.stubs.k9s = { };
|
|
|
|
nmt.script = let
|
|
configDir = if !pkgs.stdenv.isDarwin then
|
|
".config/k9s"
|
|
else
|
|
"Library/Application Support/k9s";
|
|
in ''
|
|
assertPathNotExists home-files/${configDir}
|
|
'';
|
|
}
|