depot/cluster/lib/inject-nixos-config.nix
2022-08-03 23:04:19 +02:00

10 lines
221 B
Nix

{ config, lib, ... }:
with lib;
{
options.out.injectedNixosConfig = mkOption {
description = "NixOS configuration modules to inject into the host.";
type = with types; listOf anything;
default = {};
};
}