0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

systemd service: add aliases option

This commit is contained in:
Nikolay Amiantov 2017-02-02 00:51:16 +03:00
parent dd934beb9f
commit 8ef14f80e3
3 changed files with 21 additions and 9 deletions

View file

@ -52,6 +52,12 @@ in rec {
description = "Units that want (i.e. depend on) this unit.";
};
aliases = mkOption {
default = [];
type = types.listOf types.str;
description = "Aliases of that unit.";
};
};
concreteUnitOptions = sharedOptions // {