31 lines
518 B
Nix
31 lines
518 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
themes = {
|
|
gtk-theme = pkgs.dracula-theme-git;
|
|
icon-theme = pkgs.dracula-icon-theme;
|
|
cursor-theme = themes.icon-theme;
|
|
};
|
|
in
|
|
{
|
|
alqueva.system.dconf = {
|
|
enable = true;
|
|
luminosity = "dark";
|
|
theme = "Dracula";
|
|
icon.theme = "Dracula";
|
|
cursor = {
|
|
size = 24;
|
|
theme = "Dracula-cursors";
|
|
};
|
|
};
|
|
|
|
qt = {
|
|
enable = true;
|
|
platformTheme = "gnome";
|
|
style = "adwaita-dark";
|
|
};
|
|
|
|
environment.systemPackages = builtins.attrValues themes;
|
|
}
|