gnome-things.nix

This commit is contained in:
Sridhar Ratnakumar 2021-06-30 08:57:34 -04:00
parent 231464a5d1
commit 08f77d9bc3
2 changed files with 20 additions and 10 deletions

View file

@ -9,6 +9,7 @@
./touchpad-trackpoint.nix
./autolock.nix
./redshift.nix
./gnome-things.nix
# WMish things
./xmonad
@ -23,14 +24,4 @@
xorg.xmessage
];
#
# Various GNOME non-sense that must be enabled to work with WMs
#
services.gnome.at-spi2-core.enable = true;
# https://github.com/taffybar/taffybar/issues/403
services.xserver.gdk-pixbuf.modulePackages = [ pkgs.librsvg ];
gtk.iconCache.enable = true;
}

View file

@ -0,0 +1,19 @@
{ pkgs, ... }: {
#
# Various GNOME non-sense that must be enabled to work with WMs
#
services.gnome.at-spi2-core.enable = true;
# https://github.com/taffybar/taffybar/issues/403
services.xserver.gdk-pixbuf.modulePackages = [ pkgs.librsvg ];
gtk.iconCache.enable = true;
environment.systemPackages = with pkgs; [
# https://github.com/NixOS/nixpkgs/issues/43836#issuecomment-419217138
hicolor-icon-theme
gnome-icon-theme
];
}