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