Switched to catppuccin
This commit is contained in:
parent
a7a8b638b0
commit
6ab7837acf
15 changed files with 114 additions and 78 deletions
22
modules/home/programs/k9s/default.nix
Normal file
22
modules/home/programs/k9s/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
namespace,
|
||||
...
|
||||
}: let
|
||||
cfg = config.${namespace}.programs.k9s;
|
||||
in {
|
||||
options.${namespace}.programs.k9s = {
|
||||
enable = lib.mkEnableOption "k9s";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.k9s = {
|
||||
enable = true;
|
||||
catppuccin = {
|
||||
enable = true;
|
||||
transparent = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -16,6 +16,7 @@ in {
|
|||
config = mkIf cfg.enable {
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
catppuccin.enable = true;
|
||||
font = {
|
||||
size = 12;
|
||||
package = pkgs.nerdfonts.override {fonts = ["Hack"];};
|
||||
|
|
|
@ -18,7 +18,7 @@ in {
|
|||
enable = true;
|
||||
# TODO: How to ensure this font is installed?
|
||||
font = "Hack Nerd Font 10";
|
||||
theme = "gruvbox-dark-hard";
|
||||
catppuccin.enable = true;
|
||||
plugins = [pkgs.rofi-emoji];
|
||||
extraConfig = {
|
||||
show-icons = true;
|
||||
|
|
|
@ -15,9 +15,7 @@ in {
|
|||
config = mkIf cfg.enable {
|
||||
programs.swaylock = {
|
||||
enable = true;
|
||||
settings = {
|
||||
image = "${config.xdg.dataHome}/${config.${namespace}.windowManagers.sway.wallpaperPath}";
|
||||
};
|
||||
catppuccin.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue