2025-02-22 21:16:46 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
...
|
2025-03-06 20:45:49 +00:00
|
|
|
}:
|
|
|
|
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
|
|
|
};
|
2025-03-06 20:45:49 +00:00
|
|
|
in
|
|
|
|
{
|
2025-01-21 15:45:42 +00:00
|
|
|
alqueva.system.dconf = {
|
2024-12-16 21:10:12 +00:00
|
|
|
enable = true;
|
2025-01-21 15:45:42 +00:00
|
|
|
luminosity = "dark";
|
2025-03-22 17:36:40 +00:00
|
|
|
theme = "Dracula";
|
|
|
|
icon.theme = "Dracula";
|
2025-01-21 15:45:42 +00:00
|
|
|
cursor = {
|
|
|
|
size = 24;
|
2025-03-22 17:36:40 +00:00
|
|
|
theme = "Dracula-cursors";
|
2025-01-21 15:45:42 +00:00
|
|
|
};
|
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
|
|
|
}
|