liminalOS/users/youwen/linux/theming/default.nix

33 lines
559 B
Nix
Raw Normal View History

2024-09-02 18:16:22 -07:00
{ pkgs, ... }:
{
2024-10-30 21:38:05 -07:00
# imports = [ ./catppuccin.nix ];
#
imports = [ ./stylix.nix ];
gtk = {
enable = true;
cursorTheme = {
name = "Bibata-Modern-Ice";
size = 26;
};
2024-09-02 18:16:22 -07:00
iconTheme = {
name = "Papirus-Dark";
};
2024-10-30 21:38:05 -07:00
# theme = {
# name = "rose-pine";
# package = pkgs.rose-pine-gtk-theme;
# };
};
2024-10-30 21:38:05 -07:00
# qt = {
# enable = true;
# platformTheme.name = "gtk";
# style.name = "gtk2";
# };
2024-10-30 21:38:05 -07:00
# home.file.".config/kdeglobals".text = ''
# [Colors:View]
# BackgroundNormal=#191724
# '';
}