2023-05-29 10:35:13 +03:00
|
|
|
{lib, ...}: rec {
|
2022-10-27 21:14:41 +03:00
|
|
|
_file = ./format-module.nix;
|
|
|
|
# This deliberate key makes sure this module will be deduplicated
|
|
|
|
# regardless of the accessor path: either via flake's nixosModule
|
|
|
|
# or as part of the nixos-generate command. These two store paths
|
|
|
|
# of the module may differ and hence don't serve as a key
|
|
|
|
key = "github:nix-community/nixos-generators/format-module.nix";
|
|
|
|
|
2021-06-07 03:20:11 +03:00
|
|
|
options = {
|
2023-07-22 17:20:50 +03:00
|
|
|
fileExtension = lib.mkOption {
|
2021-06-07 03:20:11 +03:00
|
|
|
type = lib.types.str;
|
|
|
|
description = "Declare the path of the wanted file in the output directory";
|
2023-07-21 15:58:38 +03:00
|
|
|
default = "";
|
2021-06-07 03:20:11 +03:00
|
|
|
};
|
|
|
|
formatAttr = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Declare the default attribute to build";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|