diff options
| author | Franck Cuny <franck@fcuny.net> | 2026-01-03 08:34:53 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2026-01-03 08:34:53 -0800 |
| commit | bec76a3af1ab18cf7190d2ccdfcde568443cdb8f (patch) | |
| tree | 97d4e89216966fe3539616ec7d016887e5c57ebc /home/programs | |
| parent | simplify wireguard public key settings (diff) | |
| download | infra-bec76a3af1ab18cf7190d2ccdfcde568443cdb8f.tar.gz | |
configure the theme for bottom and bat
Diffstat (limited to 'home/programs')
| -rw-r--r-- | home/programs/bat.nix | 1 | ||||
| -rw-r--r-- | home/programs/bottom.nix | 7 | ||||
| -rw-r--r-- | home/programs/kitty.nix | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/home/programs/bat.nix b/home/programs/bat.nix index 3627997..e3a2c1f 100644 --- a/home/programs/bat.nix +++ b/home/programs/bat.nix @@ -5,6 +5,7 @@ extraPackages = with pkgs.bat-extras; [ batman ]; config = { pager = "less -FR"; + theme = "Catppuccin Latte"; }; }; diff --git a/home/programs/bottom.nix b/home/programs/bottom.nix new file mode 100644 index 0000000..3b35d72 --- /dev/null +++ b/home/programs/bottom.nix @@ -0,0 +1,7 @@ +{ ... }: +{ + bottom = { + enable = true; + settings.styles.theme = "nord-light"; + }; +} diff --git a/home/programs/kitty.nix b/home/programs/kitty.nix index b02702d..520f1ce 100644 --- a/home/programs/kitty.nix +++ b/home/programs/kitty.nix @@ -2,7 +2,7 @@ { programs.kitty = { enable = true; - themeFile = "Modus_Operandi_Tinted"; + themeFile = "Modus_Operandi"; settings = { copy_on_select = "yes"; bold_font = "auto"; |
