nixos-generators/format-module.nix
2021-06-08 18:48:30 -07:00

15 lines
336 B
Nix

{ lib, ... }: {
options = {
filename = lib.mkOption {
type = lib.types.str;
description = "Declare the path of the wanted file in the output directory";
default = "*";
};
formatAttr = lib.mkOption {
type = lib.types.str;
description = "Declare the default attribute to build";
};
};
}