diff --git a/users/richie/home/gui/default.nix b/users/richie/home/gui/default.nix index 851643a..4a9957a 100644 --- a/users/richie/home/gui/default.nix +++ b/users/richie/home/gui/default.nix @@ -3,6 +3,7 @@ imports = [ ./firefox ./vscode + ./kitty.nix ]; home.packages = with pkgs; [ diff --git a/users/richie/home/gui/kitty.nix b/users/richie/home/gui/kitty.nix new file mode 100644 index 0000000..481984a --- /dev/null +++ b/users/richie/home/gui/kitty.nix @@ -0,0 +1,12 @@ +{pkgs, ...}: { + programs.kitty = { + enable = true; + font.name = "IntoneMono Nerd Font"; + settings = { + allow_remote_control = "no"; + shell = "${pkgs.zsh}/bin/zsh"; + wayland_titlebar_color = "background"; + }; + theme = "VSCode_Dark"; + }; +}