mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
34 lines
685 B
Nix
34 lines
685 B
Nix
{ pkgs, nix-colors, ... }:
|
|
{
|
|
|
|
colorScheme = nix-colors.colorSchemes.dracula;
|
|
|
|
# theme hardcoded to dracula, too lazy to make all this base16
|
|
systemd.user.sessionVariables.GTK_THEME = "Dracula";
|
|
qt = {
|
|
enable = true;
|
|
platformTheme.name = "gtk";
|
|
style = {
|
|
name = "Dracula";
|
|
package = pkgs.dracula-theme;
|
|
};
|
|
};
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = "Dracula";
|
|
package = pkgs.dracula-theme;
|
|
};
|
|
iconTheme = {
|
|
name = "Dracula";
|
|
package = pkgs.dracula-icon-theme;
|
|
};
|
|
};
|
|
home.pointerCursor = {
|
|
gtk.enable = true;
|
|
name = "Dracula-cursors";
|
|
package = pkgs.dracula-theme;
|
|
size = 16;
|
|
};
|
|
}
|