about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichele Guerini Rocco <rnhmjoj@users.noreply.github.com>2022-10-24 10:57:40 +0200
committerGitHub <noreply@github.com>2022-10-24 10:57:40 +0200
commitbbdc6e34d1bd6b1644f20078fa8b0373a79e48d1 (patch)
tree2768210f3cc143764f953249e11ba75365234cc8
parentf67325ac2c5e5d7ffd41192677ea761ae47e6c79 (diff)
parent3bb69836cb478b7c899684915a96e4af312d3c05 (diff)
Merge pull request #197069 from rnhmjoj/pr-minimal
nixos/profiles/minimal: don't install freedesktop files
-rw-r--r--nixos/modules/profiles/minimal.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/nixos/modules/profiles/minimal.nix b/nixos/modules/profiles/minimal.nix
index 0e65989214a18..0125017dfee88 100644
--- a/nixos/modules/profiles/minimal.nix
+++ b/nixos/modules/profiles/minimal.nix
@@ -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;
 }