peru: 1.2.0 -> 1.3.3 (#373970)
[NixPkgs.git] / nixos / modules / config / xdg / autostart.nix
blob8fc3cb9920fa8c2f789b3bcd9fc460d9b1e1e5b3
1 { config, lib, ... }:
3   meta = {
4     maintainers = lib.teams.freedesktop.members;
5   };
7   options = {
8     xdg.autostart.enable = lib.mkOption {
9       type = lib.types.bool;
10       default = true;
11       description = ''
12         Whether to install files to support the
13         [XDG Autostart specification](https://specifications.freedesktop.org/autostart-spec/latest).
14       '';
15     };
16   };
18   config = lib.mkIf config.xdg.autostart.enable {
19     environment.pathsToLink = [
20       "/etc/xdg/autostart"
21     ];
22   };