Corrected typo
This commit is contained in:
parent
b9067e7f13
commit
5fb426f365
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
rec {
|
rec {
|
||||||
encryptedFilesystemOpts = { ... }: let
|
encryptedFSOpts = { ... }: let
|
||||||
mountpoint = { mp, ... }: {
|
mountpoint = { mp, ... }: {
|
||||||
options = with types; {
|
options = with types; {
|
||||||
mountpoint = mkOption {
|
mountpoint = mkOption {
|
||||||
|
@ -227,7 +227,7 @@ rec {
|
||||||
android-dev = mkEnableOption "Enable ADB on the host.";
|
android-dev = mkEnableOption "Enable ADB on the host.";
|
||||||
|
|
||||||
encrypted-filesystems = mkOption {
|
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.";
|
description = "List of encrypted filesystems to mount on the local host when the key is available.";
|
||||||
default = { };
|
default = { };
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue