From c8b7a9c8e9d4888e520205db9f181dd7d6610424 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sat, 27 Mar 2021 13:22:34 +0100 Subject: [PATCH] gui: Install adwaita icons system-wide --- modules/gui.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/gui.nix b/modules/gui.nix index b912690..d4cc32b 100644 --- a/modules/gui.nix +++ b/modules/gui.nix @@ -10,4 +10,8 @@ lib.mkIf config.sbruder.gui.enable { # steam (and other high quality software) still ships 32 bit binaries hardware.opengl.driSupport32Bit = lib.mkDefault pkgs.stdenv.isx86_64; + + environment.systemPackages = with pkgs; [ + pkgs.gnome3.adwaita-icon-theme # lutris requires system-wide installation + ]; }