infrastructure/modules/nixos/deploy/default.nix

18 lines
241 B
Nix

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