summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2023-02-04 21:52:14 +0100
committertv <tv@krebsco.de>2023-02-05 02:21:10 +0100
commit23b63bfdfb5ed2700441f13429cbd1cd0c2ea870 (patch)
treee9d9321157c4d12888e89897d7ea3f5ee34526a0 /lib
parentf802eaf7847eb7bd1b8a735dac5166fa8999ea06 (diff)
flameshot-once: reinit with flameshot 12.1.0-pre
Diffstat (limited to 'lib')
-rw-r--r--lib/types.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/types.nix b/lib/types.nix
index 4bb8c173f..5f01ccb52 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -7,7 +7,7 @@ let
mkOption mkOptionType optional optionalAttrs optionals range splitString
stringLength substring test testString typeOf;
inherit (lib.types)
- attrsOf bool either enum int lines listOf nullOr path str submodule;
+ addCheck attrsOf bool either enum int lines listOf nullOr path str submodule;
in
rec {
@@ -595,6 +595,9 @@ rec {
};
};
+ flameshot.color =
+ either (addCheck str (test "#[0-9A-Fa-f]{6}")) svg.color-keyword;
+
file-mode = mkOptionType {
name = "file mode";
check = test "[0-7]{4}";