alqueva/hosts/python/theme.nix

36 lines
850 B
Nix
Raw Normal View History

{pkgs, ...}: let
2024-12-10 15:12:00 +00:00
themes = {
gtk-theme = pkgs.colloid-gtk-theme.override {
themeVariants = ["purple"];
tweaks = ["nord"];
};
icon-theme = pkgs.colloid-icon-theme.override {
schemeVariants = ["nord"];
colorVariants = ["purple"];
2024-12-13 20:44:36 +00:00
};
2024-12-10 15:12:00 +00:00
cursor-theme = pkgs.simp1e-cursors;
};
in {
alqueva.system.dconf = {
2024-12-16 21:10:12 +00:00
enable = true;
luminosity = "dark";
theme = "Colloid-Purple-Dark-Nord";
icon.theme = "Colloid-Purple-Nord-Dark";
cursor = {
size = 24;
theme = "Simp1e-Nord-Dark";
};
2024-11-02 17:48:54 +00:00
};
qt = {
enable = true;
2024-12-13 20:44:36 +00:00
platformTheme = "gnome";
style = "adwaita-dark";
2024-11-02 17:48:54 +00:00
};
2024-12-10 15:12:00 +00:00
environment.systemPackages = builtins.attrValues themes;
systemd.user.tmpfiles.rules = [
"L+ %h/.config/gtk-4.0 - - - - ${themes.gtk-theme}/share/themes/Colloid-Purple-Dark-Nord/gtk-4.0"
2024-11-02 17:48:54 +00:00
];
}