nixos-config/users/rouven/modules/theme/default.nix

16 lines
332 B
Nix
Raw Normal View History

2023-01-26 10:38:58 +01:00
{ config, pkgs, ... }:
2023-01-22 23:00:16 +01:00
{
# theme hardcoded to dracula, too lazy to make all this base16
gtk = {
enable = true;
theme = {
name = "Dracula";
package = pkgs.dracula-theme;
};
2023-01-26 10:38:58 +01:00
iconTheme = {
name = "Dracula";
package = (pkgs.callPackage ../../../../pkgs/dracula-icon-theme { });
};
2023-01-22 23:00:16 +01:00
};
}