mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-19 09:31:38 +01:00
24 lines
565 B
Nix
24 lines
565 B
Nix
{ pkgs, nix-colors, ... }:
|
|
{
|
|
colorScheme = nix-colors.colorSchemes.dracula;
|
|
|
|
# theme hardcoded to dracula, too lazy to make all this base16
|
|
home.sessionVariables.GTK_THEME = "Dracula";
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = "Dracula";
|
|
package = pkgs.dracula-theme;
|
|
};
|
|
iconTheme = {
|
|
name = "Dracula";
|
|
package = (pkgs.callPackage ../../../../pkgs/dracula-icon-theme { });
|
|
};
|
|
};
|
|
home.pointerCursor = {
|
|
gtk.enable = true;
|
|
name = "Dracula-cursors";
|
|
package = pkgs.dracula-theme;
|
|
size = 16;
|
|
};
|
|
}
|