depot/cluster/lib/inject-nixos-config.nix
2023-09-03 01:11:49 +02:00

11 lines
222 B
Nix

{ config, lib, ... }:
with lib;
{
options.out.injectNixosConfig = mkOption {
description = "NixOS configuration to inject into the given host.";
type = with types; functionTo raw;
default = const [];
};
}