diff options
author | Karel Kočí <cynerd@email.cz> | 2023-08-13 14:00:18 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-08-13 14:00:18 +0200 |
commit | be48f29f9ce4af8db9c2448bab6cd60051eb13be (patch) | |
tree | 6812166972d564ca52de4d0acfdd1125e33b2380 /nixos/modules | |
parent | af7134876e79d5d19962cc064bd1d04b18425d5d (diff) | |
download | nixos-personal-be48f29f9ce4af8db9c2448bab6cd60051eb13be.tar.gz nixos-personal-be48f29f9ce4af8db9c2448bab6cd60051eb13be.tar.bz2 nixos-personal-be48f29f9ce4af8db9c2448bab6cd60051eb13be.zip |
nixos/autounlock: fix deprecated type
Diffstat (limited to 'nixos/modules')
-rw-r--r-- | nixos/modules/autounlock.nix | 2 |
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."; }; |