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

11 lines
213 B
Nix
Raw Normal View History

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