added dracula gtk theme
parent
2b03820f82
commit
53757e1126
|
@ -1,6 +1,6 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ ./bspwm ./polybar ];
|
imports = [ ./bspwm ./polybar ./gtk.nix ];
|
||||||
home-manager.users.moritz = { services.unclutter.enable = true; };
|
home-manager.users.moritz = { services.unclutter.enable = true; };
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue