feat(home-manager): init k9s module (#110)

This commit is contained in:
Bernd Schorgers 2024-04-15 01:55:39 +02:00 committed by GitHub
parent 850c26a3a2
commit ef464d6ded
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 66 additions and 1 deletions

View file

@ -279,6 +279,26 @@
},
"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": {
"cargoLocks": null,
"date": "2024-01-10",

View file

@ -169,6 +169,18 @@
};
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 = {
pname = "kitty";
version = "d7d61716a83cd135344cbb353af9d197c5d7cec1";

View 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}";
};
}

View file

@ -54,6 +54,10 @@ fetch.github = "catppuccin/hyprland"
src.git = "https://github.com/catppuccin/imv.git"
fetch.github = "catppuccin/imv"
[k9s]
src.git = "https://github.com/catppuccin/k9s.git"
fetch.github = "catppuccin/k9s"
[kitty]
src.git = "https://github.com/catppuccin/kitty.git"
fetch.github = "catppuccin/kitty"

View file

@ -67,6 +67,7 @@ in
helix = ctpEnable;
home-manager.enable = false;
imv = ctpEnable;
k9s = ctpEnable;
kitty = ctpEnable;
lazygit = ctpEnable;
micro = ctpEnable;