From 5fb426f365c489acc367e8935c2798f2bd14fd90 Mon Sep 17 00:00:00 2001 From: niten Date: Sun, 17 Oct 2021 22:34:22 -0700 Subject: [PATCH] Corrected typo --- lib/types/host.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/types/host.nix b/lib/types/host.nix index f9fd7c7..e00402d 100644 --- a/lib/types/host.nix +++ b/lib/types/host.nix @@ -2,7 +2,7 @@ with lib; rec { - encryptedFilesystemOpts = { ... }: let + encryptedFSOpts = { ... }: let mountpoint = { mp, ... }: { options = with types; { mountpoint = mkOption { @@ -227,7 +227,7 @@ rec { android-dev = mkEnableOption "Enable ADB on the host."; encrypted-filesystems = mkOption { - type = attrsOf (submodule encrypteFSOpts); + type = attrsOf (submodule encryptedFSOpts); description = "List of encrypted filesystems to mount on the local host when the key is available."; default = { }; };