infrastructure/modules/nixos/network/deploy.nix
2024-02-18 11:45:14 -08:00

17 lines
263 B
Nix

{
config,
lib,
...
}: let
inherit (lib.options) mkOption;
in {
options = with lib.types; {
deploy.system = mkOption {
type = unspecified;
readOnly = true;
};
};
config = {
deploy.system = config.system.build.toplevel;
};
}