summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2020-08-05 10:57:09 +0200
committertv <tv@krebsco.de>2020-08-05 11:07:51 +0200
commit4227cadb6823bd4b945b8ea9e766f22b95d26468 (patch)
treee4decd0853990478556b081a5e514eaae0fffc3b
parentb5b90b598430cfa876639d76dbbdc8d826ccb5c0 (diff)
types: add systemd unit name
-rw-r--r--lib/types.nix8
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";