aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/config/xdg/autostart.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/config/xdg/autostart.nix')
-rw-r--r--nixpkgs/nixos/modules/config/xdg/autostart.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/nixpkgs/nixos/modules/config/xdg/autostart.nix b/nixpkgs/nixos/modules/config/xdg/autostart.nix
index 0ee94fed818..40984cb5ec5 100644
--- a/nixpkgs/nixos/modules/config/xdg/autostart.nix
+++ b/nixpkgs/nixos/modules/config/xdg/autostart.nix
@@ -2,19 +2,23 @@
with lib;
{
+ meta = {
+ maintainers = teams.freedesktop.members;
+ };
+
options = {
xdg.autostart.enable = mkOption {
type = types.bool;
default = true;
description = ''
- Whether to install files to support the
+ Whether to install files to support the
<link xlink:href="https://specifications.freedesktop.org/autostart-spec/autostart-spec-latest.html">XDG Autostart specification</link>.
'';
};
};
config = mkIf config.xdg.autostart.enable {
- environment.pathsToLink = [
+ environment.pathsToLink = [
"/etc/xdg/autostart"
];
};