infrastructure/modules/nixos/deploy/default.nix

14 lines
183 B
Nix

{ config, pkgs, lib, options, ... }:
with lib;
{
options = {
deploy = {
target = mkOption {
type = with types; str;
default = "";
};
};
};
}