depot/cluster/lib/inject-nixos-config.nix

11 lines
213 B
Nix
Raw Normal View History

2022-10-17 14:54:48 +02:00
{ lib, ... }:
2022-06-23 20:13:28 +02:00
with lib;
{
options.out.injectedNixosConfig = mkOption {
description = "NixOS configuration modules to inject into the host.";
type = with types; listOf anything;
default = {};
};
}