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
|
|
|
};
|
|
|
|
}
|