mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-26 12:55:30 +03:00
15 lines
336 B
Nix
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";
|
|
};
|
|
};
|
|
}
|
|
|