feat: rearrange home-manager modules

This commit is contained in:
Felix Schröter 2020-03-13 19:41:55 +01:00 committed by Felix Schroeter
parent 89f6ab94b4
commit 58eae1d229
21 changed files with 44 additions and 30 deletions

10
home/desktop/gtk.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
gtk.enable = true;
gtk.theme.name = "Pop-dark";
gtk.theme.package = pkgs.pop-gtk-theme;
gtk.gtk3.extraConfig = {
gtk-application-prefer-dark-theme = true;
};
}