aboutsummaryrefslogtreecommitdiff
path: root/home/rices/schrottkatze/stylix.nix
blob: 4c9d500c71ad692a00caac9b4ba3abe475a633e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{pkgs, ...}: {
  stylix.targets = {
    firefox.profileNames = ["mun"];
    helix.enable = false;
    btop.enable = false;
    nushell.enable = false;
    starship.enable = false;
    kitty.enable = false;
    dunst.enable = false;
    wofi.enable = false;
  };
  gtk = {
    enable = true;
    cursorTheme = {
      package = pkgs.phinger-cursors;
      name = "phinger-cursors";
      size = 30;
    };
    iconTheme = {
      package = pkgs.gruvbox-dark-icons-gtk;
      name = "gruvbox-dark-icons";
    };
  };
}