mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-26 10:07:16 +08:00
19 lines
459 B
Nix
19 lines
459 B
Nix
{ 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
|
|
];
|
|
|
|
|
|
}
|