10 lines
222 B
Nix
10 lines
222 B
Nix
{ config, lib, ... }:
|
|
with lib;
|
|
|
|
{
|
|
options.out.injectNixosConfig = mkOption {
|
|
description = "NixOS configuration to inject into the given host.";
|
|
type = with types; functionTo raw;
|
|
default = const [];
|
|
};
|
|
}
|