Files
nixos-config/user/chest/modules/style.nix
T

70 lines
1.5 KiB
Nix
Raw Normal View History

{ pkgs, config, lib, host, ... }: {
2024-08-27 13:53:48 +03:00
stylix = {
enable = true;
targets = {
hyprland.enable = false;
waybar.enable = false;
2024-10-02 22:10:08 +03:00
kitty.variant256Colors = true;
2024-08-27 13:53:48 +03:00
};
2024-09-29 21:47:41 +03:00
base16Scheme = "${pkgs.base16-schemes}/share/themes/eris.yaml";
2024-08-27 13:53:48 +03:00
polarity = "dark";
image = pkgs.fetchurl {
url = "https://w.wallhaven.cc/full/kx/wallhaven-kxedr7.jpg";
sha256 = "0ypqnq7bsr2giq7nq1c3xrw2m0gkii9j5zhfp512r93wc96zvm50";
};
2025-01-01 17:18:03 +03:00
iconTheme = {
enable = true;
package = pkgs.pop-icon-theme;
dark = "Pop-Dark";
};
cursor = if host.name == "Impreza" then {
name = "catppuccin-mocha-pink-cursors";
size = 16;
package = pkgs.catppuccin-cursors.mochaPink;
} else {
2025-04-02 15:07:36 +03:00
name = "catppuccin-mocha-peach-cursors";
2025-04-11 14:16:29 +03:00
size = 16;
2025-04-02 15:07:36 +03:00
package = pkgs.catppuccin-cursors.mochaPeach;
};
2024-08-27 13:53:48 +03:00
fonts = {
monospace = {
name = "JetBrains Mono";
package = pkgs.jetbrains-mono;
};
2025-03-31 14:55:54 +03:00
emoji = {
package = pkgs.noto-fonts-monochrome-emoji;
name = "Noto Emoji";
};
2024-08-27 13:53:48 +03:00
sizes = {
applications = 13;
desktop = 12;
};
};
opacity = {
popups = .8;
terminal = .5;
};
};
2025-09-29 17:49:38 +03:00
dconf.settings = {
"org/gnome/desktop/interface".color-scheme = "prefer-dark";
};
gtk = {
gtk4.extraConfig = {
gtk-application-prefer-dark-theme = true;
};
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = true;
};
};
2024-08-27 13:53:48 +03:00
}