added dracula gtk theme

dev-docs
Moritz Böhme 2021-10-12 11:13:28 +02:00
parent 2b03820f82
commit 53757e1126
2 changed files with 15 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ config, lib, pkgs, ... }:
{
imports = [ ./bspwm ./polybar ];
imports = [ ./bspwm ./polybar ./gtk.nix ];
home-manager.users.moritz = { services.unclutter.enable = true; };
}

14
modules/desktop/gtk.nix Normal file
View File

@ -0,0 +1,14 @@
{ config, lib, pkgs, ... }:
{
home-manager.users.moritz = {
gtk = {
enable = true;
theme = {
package = pkgs.dracula-theme;
name = "Dracula";
};
};
};
programs.dconf.enable = true;
}