From af9856537e7dac78156e74cca4d3322ba6680819 Mon Sep 17 00:00:00 2001 From: Jakob Lechner Date: Wed, 6 Mar 2024 23:07:39 +0000 Subject: [PATCH] Fix deprecation types.string is deprecated --- modules/pubkeys.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/pubkeys.nix b/modules/pubkeys.nix index 29e2e93..52dea77 100644 --- a/modules/pubkeys.nix +++ b/modules/pubkeys.nix @@ -3,11 +3,11 @@ { options.fablab.pubkeys = with lib.types; { users = lib.mkOption { - type = attrsOf (listOf string); + type = attrsOf (listOf str); description = "pubkeys for a specific user"; }; groups = lib.mkOption { - type = attrsOf (listOf string); + type = attrsOf (listOf str); description = "pubkeys for a group of users"; }; };