aboutsummaryrefslogtreecommitdiff
path: root/home-manager/programs/default.nix
blob: f81905436742a5dd2f5f086eb93a67e211eb189a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
let
  more = { pkgs, ... }: {
    programs = {
      kitty = {
        enable = true;
        font.name = "Source Code Pro";
        font.size = 11.3;
        theme = "Rosé Pine Moon";
        shellIntegration.enableFishIntegration = true;
        extraConfig = "cursor_shape underline";
      };
    };
  };
in
[
  ./fish
  ./firefox
  ./rofi
  ./emacs
  ./ranger
  more
]