diff options
author | tv <tv@krebsco.de> | 2020-08-05 10:57:09 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-08-05 11:07:51 +0200 |
commit | 4227cadb6823bd4b945b8ea9e766f22b95d26468 (patch) | |
tree | e4decd0853990478556b081a5e514eaae0fffc3b /lib/types.nix | |
parent | b5b90b598430cfa876639d76dbbdc8d826ccb5c0 (diff) |
types: add systemd unit name
Diffstat (limited to 'lib/types.nix')
-rw-r--r-- | lib/types.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/types.nix b/lib/types.nix index 82e184ba9..66b01fd12 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -530,6 +530,14 @@ rec { merge = mergeOneOption; }; + systemd.unit-name = mkOptionType { + name = "systemd unit name"; + check = x: + test "^[0-9A-Za-z:_.\\-]+@?\\.(service|socket|device|mount|automount|swap|target|path|timer|slice|scope)$" x && + stringLength x <= 256; + merge = mergeOneOption; + }; + # RFC952, B. Lexical grammar, <hname> hostname = mkOptionType { name = "hostname"; |