mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 16:05:10 +00:00
13 lines
262 B
Nix
13 lines
262 B
Nix
|
{lib, ...}: let
|
||
|
inherit (lib.attrsets) mapAttrs;
|
||
|
inherit (lib.modules) mkForce;
|
||
|
in {
|
||
|
xdg = mapAttrs (_: mkForce) {
|
||
|
sounds.enable = false;
|
||
|
mime.enable = false;
|
||
|
menus.enable = false;
|
||
|
icons.enable = false;
|
||
|
autostart.enable = false;
|
||
|
};
|
||
|
}
|