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

11 lines
222 B
Nix
Raw Normal View History

2023-08-31 01:55:45 +03:00
{ config, lib, ... }:
2022-06-23 21:13:28 +03:00
with lib;
{
2023-08-31 01:55:45 +03:00
options.out.injectNixosConfig = mkOption {
description = "NixOS configuration to inject into the given host.";
type = with types; functionTo raw;
default = const [];
2022-06-23 21:13:28 +03:00
};
}