nixos/profiles/minimal: don't install freedesktop files

This saves about 25M from the closure size of:

$ nix build -f nixos system --arg configuration '
  { imports = [ ./nixos/modules/profiles/minimal.nix ];
    fileSystems."/".label="root";
    boot.loader.grub.device = "nodev";
  }'
This commit is contained in:
rnhmjoj 2022-10-21 14:41:26 +02:00
parent 950d41c958
commit 3bb69836cb
No known key found for this signature in database
GPG key ID: BFBAF4C975F76450

View file

@ -13,4 +13,9 @@ with lib;
documentation.nixos.enable = mkDefault false;
programs.command-not-found.enable = mkDefault false;
xdg.autostart.enable = mkDefault false;
xdg.icons.enable = mkDefault false;
xdg.mime.enable = mkDefault false;
xdg.sounds.enable = mkDefault false;
}