aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/kitty.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--home/profiles/kitty.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/home/profiles/kitty.nix b/home/profiles/kitty.nix
new file mode 100644
index 0000000..f5fceeb
--- /dev/null
+++ b/home/profiles/kitty.nix
@@ -0,0 +1,16 @@
+{ ... }:
+{
+ programs.kitty = {
+ enable = true;
+ themeFile = "Modus_Operandi_Tinted";
+ settings = {
+ copy_on_select = "yes";
+ enable_audio_bell = "no";
+ window_padding_width = 5;
+ tab_title_template = "{index}{title}";
+ tab_bar_style = "powerline";
+ font_family = "Source Code Pro";
+ font_size = "15.0";
+ };
+ };
+}