From 701f236ab6ad2cfc2564fb97e11c11eb4b394319 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 23 May 2021 18:31:42 -0600 Subject: [PATCH] [NixOS] Move stuff around --- nixos/configuration.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 9c186c1d..671596d5 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -81,6 +81,10 @@ in }; services.tzupdate.enable = true; + xdg.menus.enable = true; + + # Enable the gtk icon cache + gtk.iconCache.enable = true; fonts = { fonts = with pkgs; [ @@ -106,8 +110,6 @@ in }; }; - xdg.menus.enable = true; - environment.systemPackages = with pkgs; [ # Applications @@ -329,7 +331,8 @@ in }; }; - services.gnome3.at-spi2-core.enable = true; + # TODO: Add a comment explaining what this does. + services.gnome.at-spi2-core.enable = true; services.kbfs.enable = true;