16 lines
282 B
Nix
16 lines
282 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
{lib, config, ... }: {
|
|
options.tempDebugVar = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "";
|
|
description = "tempDebugVar";
|
|
};
|
|
}
|
|
];
|
|
|
|
environment.etc."debugfile".text = ''
|
|
${config.tempDebugVar}
|
|
'';
|
|
}
|