From eaad3a11b4b3b88f163045b665a80c6e8888bcbd Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Sat, 17 Oct 2020 00:52:33 +0200 Subject: [PATCH] encryptedDisk: use str instead of string --- nix/os/modules/encryptedDisk.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/os/modules/encryptedDisk.nix b/nix/os/modules/encryptedDisk.nix index cb7ffd0..b70c7be 100644 --- a/nix/os/modules/encryptedDisk.nix +++ b/nix/os/modules/encryptedDisk.nix @@ -10,7 +10,7 @@ in { options.hardware.encryptedDisk = { enable = mkEnableOption "Enable encrypted filesystem layout"; diskId = mkOption { - type = types.string; + type = types.str; }; };