mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
23 lines
494 B
Nix
23 lines
494 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
{
|
||
|
options = {
|
||
|
xdg.autostart.enable = mkOption {
|
||
|
type = types.bool;
|
||
|
default = true;
|
||
|
description = ''
|
||
|
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 = [
|
||
|
"/etc/xdg/autostart"
|
||
|
];
|
||
|
};
|
||
|
|
||
|
}
|