10 lines
243 B
Nix
10 lines
243 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.deploy = {
|
|
enable = (lib.mkEnableOption // { default = true; }) "enable deployrs module";
|
|
address = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = config.networking.hostName;
|
|
};
|
|
};
|
|
}
|