alqueva/hosts/python/theme.nix

42 lines
1 KiB
Nix
Raw Normal View History

2024-11-02 17:48:54 +00:00
{
pkgs,
lib,
...
}: {
2024-11-02 17:48:54 +00:00
programs.dconf = {
profiles.user.databases = [
{
settings = {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
cursor-size = lib.gvariant.mkUint32 24;
cursor-theme = "Simp1e-Tokyo-Night";
icon-theme = "Tela-circle-purple-dark";
2024-11-30 23:20:42 +00:00
gtk-theme = "Tokyonight-Dark";
2024-11-02 17:48:54 +00:00
};
};
}
];
enable = true;
};
qt = {
enable = true;
style = "kvantum";
};
environment.systemPackages = builtins.attrValues {
gtk-theme = pkgs.tokyonight-gtk-theme;
icon-theme = pkgs.tela-circle-icon-theme.override {
colorVariants = ["purple"];
circularFolder = true;
};
cursor-theme = pkgs.simp1e-cursors;
2024-11-02 17:48:54 +00:00
};
systemd.user.tmpfiles.rules = [
"L+ %h/.config/gtk-4.0/gtk.css - - - - ${pkgs.tokyonight-gtk-theme}/share/themes/Tokyonight-Dark/gtk-4.0/gtk.css"
"L+ %h/.config/gtk-4.0/gtk-dark.css - - - - ${pkgs.tokyonight-gtk-theme}/share/themes/Tokyonight-Dark/gtk-4.0/gtk-dark.css"
2024-11-02 17:48:54 +00:00
];
}