feat(home-manager): init k9s module (#110)
This commit is contained in:
parent
850c26a3a2
commit
ef464d6ded
5 changed files with 66 additions and 1 deletions
|
@ -279,6 +279,26 @@
|
||||||
},
|
},
|
||||||
"version": "0317a097b6ec8122b1da6d02f61d0c5158019f6e"
|
"version": "0317a097b6ec8122b1da6d02f61d0c5158019f6e"
|
||||||
},
|
},
|
||||||
|
"k9s": {
|
||||||
|
"cargoLocks": null,
|
||||||
|
"date": "2024-03-22",
|
||||||
|
"extract": null,
|
||||||
|
"name": "k9s",
|
||||||
|
"passthru": null,
|
||||||
|
"pinned": false,
|
||||||
|
"src": {
|
||||||
|
"deepClone": false,
|
||||||
|
"fetchSubmodules": false,
|
||||||
|
"leaveDotGit": false,
|
||||||
|
"name": null,
|
||||||
|
"owner": "catppuccin",
|
||||||
|
"repo": "k9s",
|
||||||
|
"rev": "82eba6feb442932e28facedfb18dfbe79234f180",
|
||||||
|
"sha256": "sha256-VLi7G6Rjmbr6feSOg8aLYJmOb+GyJUKi3k9qod6ut9k=",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"version": "82eba6feb442932e28facedfb18dfbe79234f180"
|
||||||
|
},
|
||||||
"kitty": {
|
"kitty": {
|
||||||
"cargoLocks": null,
|
"cargoLocks": null,
|
||||||
"date": "2024-01-10",
|
"date": "2024-01-10",
|
||||||
|
|
|
@ -169,6 +169,18 @@
|
||||||
};
|
};
|
||||||
date = "2024-01-17";
|
date = "2024-01-17";
|
||||||
};
|
};
|
||||||
|
k9s = {
|
||||||
|
pname = "k9s";
|
||||||
|
version = "82eba6feb442932e28facedfb18dfbe79234f180";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "catppuccin";
|
||||||
|
repo = "k9s";
|
||||||
|
rev = "82eba6feb442932e28facedfb18dfbe79234f180";
|
||||||
|
fetchSubmodules = false;
|
||||||
|
sha256 = "sha256-VLi7G6Rjmbr6feSOg8aLYJmOb+GyJUKi3k9qod6ut9k=";
|
||||||
|
};
|
||||||
|
date = "2024-03-22";
|
||||||
|
};
|
||||||
kitty = {
|
kitty = {
|
||||||
pname = "kitty";
|
pname = "kitty";
|
||||||
version = "d7d61716a83cd135344cbb353af9d197c5d7cec1";
|
version = "d7d61716a83cd135344cbb353af9d197c5d7cec1";
|
||||||
|
|
28
modules/home-manager/k9s.nix
Normal file
28
modules/home-manager/k9s.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ config
|
||||||
|
, lib
|
||||||
|
, sources
|
||||||
|
, ...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
cfg = config.programs.k9s.catppuccin;
|
||||||
|
enable = cfg.enable && config.programs.k9s.enable;
|
||||||
|
|
||||||
|
themeFile = "catppuccin-${cfg.flavour}.yaml";
|
||||||
|
themePath = "/skins/${themeFile}";
|
||||||
|
theme = sources.k9s + "/dist/${themeFile}";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.programs.k9s.catppuccin =
|
||||||
|
lib.ctp.mkCatppuccinOpt "k9s";
|
||||||
|
|
||||||
|
config = lib.mkIf enable
|
||||||
|
{
|
||||||
|
assertions = [
|
||||||
|
(lib.ctp.assertXdgEnabled "k9s")
|
||||||
|
];
|
||||||
|
|
||||||
|
xdg.configFile."k9s${themePath}".source = theme;
|
||||||
|
|
||||||
|
programs.k9s.settings.k9s.ui.skin = "catppuccin-${cfg.flavour}";
|
||||||
|
};
|
||||||
|
}
|
|
@ -54,6 +54,10 @@ fetch.github = "catppuccin/hyprland"
|
||||||
src.git = "https://github.com/catppuccin/imv.git"
|
src.git = "https://github.com/catppuccin/imv.git"
|
||||||
fetch.github = "catppuccin/imv"
|
fetch.github = "catppuccin/imv"
|
||||||
|
|
||||||
|
[k9s]
|
||||||
|
src.git = "https://github.com/catppuccin/k9s.git"
|
||||||
|
fetch.github = "catppuccin/k9s"
|
||||||
|
|
||||||
[kitty]
|
[kitty]
|
||||||
src.git = "https://github.com/catppuccin/kitty.git"
|
src.git = "https://github.com/catppuccin/kitty.git"
|
||||||
fetch.github = "catppuccin/kitty"
|
fetch.github = "catppuccin/kitty"
|
||||||
|
|
1
test.nix
1
test.nix
|
@ -67,6 +67,7 @@ in
|
||||||
helix = ctpEnable;
|
helix = ctpEnable;
|
||||||
home-manager.enable = false;
|
home-manager.enable = false;
|
||||||
imv = ctpEnable;
|
imv = ctpEnable;
|
||||||
|
k9s = ctpEnable;
|
||||||
kitty = ctpEnable;
|
kitty = ctpEnable;
|
||||||
lazygit = ctpEnable;
|
lazygit = ctpEnable;
|
||||||
micro = ctpEnable;
|
micro = ctpEnable;
|
||||||
|
|
Loading…
Reference in a new issue