python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / config / xdg / autostart.nix
bloba4fdbda911a2812f3432171d17a633e843942e2c
1 { config, lib, ... }:
3 with lib;
5   meta = {
6     maintainers = teams.freedesktop.members;
7   };
9   options = {
10     xdg.autostart.enable = mkOption {
11       type = types.bool;
12       default = true;
13       description = lib.mdDoc ''
14         Whether to install files to support the
15         [XDG Autostart specification](https://specifications.freedesktop.org/autostart-spec/autostart-spec-latest.html).
16       '';
17     };
18   };
20   config = mkIf config.xdg.autostart.enable {
21     environment.pathsToLink = [
22       "/etc/xdg/autostart"
23     ];
24   };