rose-pine-nix/modules/home-manager/k9s.nix

24 lines
677 B
Nix
Raw Normal View History

2024-05-21 14:53:46 -07:00
{ config, lib, ... }:
let
inherit (config.catppuccin) sources;
cfg = config.programs.k9s.catppuccin;
enable = cfg.enable && config.programs.k9s.enable;
themeName = "catppuccin-${cfg.flavor}" + lib.optionalString cfg.transparent "-transparent";
themeFile = "${themeName}.yaml";
themePath = "/skins/${themeFile}";
theme = sources.k9s + "/dist/${themeFile}";
in
{
options.programs.k9s.catppuccin = lib.ctp.mkCatppuccinOpt { name = "k9s"; } // {
transparent = lib.mkEnableOption "transparent version of flavor";
2024-05-21 14:53:46 -07:00
};
2024-05-21 14:53:46 -07:00
config = lib.mkIf enable {
xdg.configFile."k9s${themePath}".source = theme;
2024-05-21 14:53:46 -07:00
programs.k9s.settings.k9s.ui.skin = themeName;
};
}