This commit is contained in:
iFargle 2023-07-01 20:46:44 +09:00
parent 5b9333a2e5
commit e61412c33f
2 changed files with 10 additions and 6 deletions

View file

@ -44,11 +44,8 @@
gnome3.gnome-tweaks
];
# Themes:
environment.systemPackages = with pkgs; [
gruvbox-gtk-theme
gruvbox-dark-icons-gtk
gruvbox-dark-gtk
];
import = [
./gnome/gruvbox-theme.nix
];
# Idea... Move these to a separate file and tie it into dconf sections that load the theme automatically when I want it.
}

View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }: {
environment.systemPackages = with pkgs; [
gruvbox-gtk-theme
gruvbox-dark-icons-gtk
gruvbox-dark-gtk
];
}