diff --git a/docs/generated-module-options.md b/docs/generated-module-options.md index 2d9cf66..4b54ef4 100644 --- a/docs/generated-module-options.md +++ b/docs/generated-module-options.md @@ -149,7 +149,7 @@ A list of GPG public key file paths\. Each of this file should contains an armor *Type:* -list of Concatenated string +list of string diff --git a/nix/module-options.nix b/nix/module-options.nix index e440cd4..5336e58 100644 --- a/nix/module-options.nix +++ b/nix/module-options.nix @@ -171,7 +171,7 @@ }; gpgPublicKeyPaths = mkOption { description = "A list of GPG public key file paths. Each of this file should contains an armored GPG key."; - type = listOf string; + type = listOf str; default = []; }; }; diff --git a/nix/module.nix b/nix/module.nix index 3281c60..987cb08 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -1,4 +1,4 @@ -self: { config, pkgs, lib, ... }: +{ self }: { config, pkgs, lib, ... }: let cfg = config; yaml = pkgs.formats.yaml { };