feat: isolate deploy module

This commit is contained in:
Jermeiah S 2025-06-19 16:07:55 -04:00
parent bb141b7a71
commit 6becf62164
No known key found for this signature in database
3 changed files with 29 additions and 19 deletions

View file

@ -0,0 +1,10 @@
{ lib, config, ... }:
{
options.deploy = {
enable = lib.mkEnableOption "enable deployrs module";
address = lib.mkOption {
type = lib.types.str;
default = config.networking.hostName;
};
};
}