nixos-dots

nixos dots
git clone git://popovic.xyz/nixos-dots.git
Log | Files | Refs

kitty.nix (260B)


      1 { ... }:
      2 {
      3   programs.kitty = {
      4     enable = true;
      5     font = {
      6       name = "Terminess Nerd Font";
      7       size = 18;
      8     };
      9     settings = {
     10       background_opacity = 0.93;
     11       confirm_os_window_close = 0;
     12       touch_scroll_multiplier = 1.0;
     13     };
     14   };
     15 }