diff options
Diffstat (limited to 'home/profiles/workstation.nix')
| -rw-r--r-- | home/profiles/workstation.nix | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/home/profiles/workstation.nix b/home/profiles/workstation.nix index 60ba6ad..8bca5b1 100644 --- a/home/profiles/workstation.nix +++ b/home/profiles/workstation.nix @@ -30,11 +30,9 @@ let in { imports = [ - ./alacritty.nix ./dev.nix ./emacs.nix ./firefox.nix - ./tmux.nix ./yubikey.nix ./ytdlp.nix ]; @@ -70,6 +68,21 @@ in # masked-emails ]; + programs.kitty = { + enable = true; + font = { + name = "Source Code Pro"; + size = 13; + }; + theme = "Modus Operandi"; + settings = { + tab_bar_edge = "bottom"; + tab_bar_background = "none"; + tab_bar_style = "powerline"; + active_tab_font_style = "bold-italic"; + }; + }; + programs.feh.enable = true; programs.mpv = { enable = true; |
