Add GTK config

This commit is contained in:
Valentin Brandl 2022-02-25 22:41:52 +01:00
parent 14e6bddd84
commit 11e56e806d
2 changed files with 10 additions and 0 deletions

View File

@ -14,6 +14,7 @@ user:
./gnome-keyring.nix ./gnome-keyring.nix
(import ./git.nix user) (import ./git.nix user)
./go.nix ./go.nix
./gtk.nix
./htop.nix ./htop.nix
./i3.nix ./i3.nix
./lsd.nix ./lsd.nix

9
home/gtk.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs, ... }: {
gtk = {
enable = true;
theme = {
package = pkgs.arc-theme;
name = "Arc-Dark";
};
};
}