alqueva/hosts/solterra/theme.nix

32 lines
518 B
Nix
Raw Normal View History

2025-02-22 21:16:46 +00:00
{
pkgs,
...
}:
let
2024-12-10 15:12:00 +00:00
themes = {
2025-03-22 17:36:40 +00:00
gtk-theme = pkgs.dracula-theme-git;
icon-theme = pkgs.dracula-icon-theme;
cursor-theme = themes.icon-theme;
2024-12-10 15:12:00 +00:00
};
in
{
alqueva.system.dconf = {
2024-12-16 21:10:12 +00:00
enable = true;
luminosity = "dark";
2025-03-22 17:36:40 +00:00
theme = "Dracula";
icon.theme = "Dracula";
cursor = {
size = 24;
2025-03-22 17:36:40 +00:00
theme = "Dracula-cursors";
};
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;
2024-11-02 17:48:54 +00:00
}