Skip to content

Commit

Permalink
Merge pull request #68 from getchoo-contrib/fix-module
Browse files Browse the repository at this point in the history
deconstruct arguments applied to module
  • Loading branch information
nlewo authored Feb 6, 2025
2 parents 44d2cb3 + 8babf05 commit fc4a395
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/generated-module-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -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



Expand Down
2 changes: 1 addition & 1 deletion nix/module-options.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];
};
};
Expand Down
2 changes: 1 addition & 1 deletion nix/module.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
self: { config, pkgs, lib, ... }:
{ self }: { config, pkgs, lib, ... }:
let
cfg = config;
yaml = pkgs.formats.yaml { };
Expand Down

0 comments on commit fc4a395

Please sign in to comment.