10 lines
221 B
Nix
10 lines
221 B
Nix
{ config, lib, ... }:
|
|
with lib;
|
|
|
|
{
|
|
options.out.injectedNixosConfig = mkOption {
|
|
description = "NixOS configuration modules to inject into the host.";
|
|
type = with types; listOf anything;
|
|
default = {};
|
|
};
|
|
}
|