aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2023-08-13 14:00:18 +0200
committerKarel Kočí <cynerd@email.cz>2023-08-13 14:00:18 +0200
commitbe48f29f9ce4af8db9c2448bab6cd60051eb13be (patch)
tree6812166972d564ca52de4d0acfdd1125e33b2380
parentaf7134876e79d5d19962cc064bd1d04b18425d5d (diff)
downloadnixos-personal-be48f29f9ce4af8db9c2448bab6cd60051eb13be.tar.gz
nixos-personal-be48f29f9ce4af8db9c2448bab6cd60051eb13be.tar.bz2
nixos-personal-be48f29f9ce4af8db9c2448bab6cd60051eb13be.zip
nixos/autounlock: fix deprecated type
-rw-r--r--nixos/modules/autounlock.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/autounlock.nix b/nixos/modules/autounlock.nix
index 7f7c24e..244dcb4 100644
--- a/nixos/modules/autounlock.nix
+++ b/nixos/modules/autounlock.nix
@@ -9,7 +9,7 @@ with lib; let
in {
options = {
cynerd.autounlock = mkOption {
- type = with types; attrsOf string;
+ type = with types; attrsOf str;
default = {};
description = "Devices to be auto-unlocked.";
};