files.nuon.enable
type
boolean
example
{
files.nuon.enable = true;
}
default
{
files.nuon.enable = false;
}
files.nush
type
attribute set of attribute set of (Concatenated string or list of Concatenated string)
example
{
files.nush = {
hello = {
en = [
"arg"
"{hello: $arg}"
];
pt = [
"arg"
"{ola: $arg}"
];
};
world = {
hello = ''
# it could use previous commands
hello en "World"
hello pt "Mundo"
'';
};
};
}
default
{
files.nush = { };
}