infrastructure/modules/nixos/deploy/default.nix
2021-03-29 04:09:49 +01:00

16 lines
235 B
Nix

{ config, pkgs, lib, options, ... }:
with lib;
{
options = {
deploy = {
groups = mkOption {
type = with types; listOf str;
default = [ ];
};
};
};
config = { deploy.groups = [ "all" ]; };
}