feat(nix): add keys enum to global cfg

This commit is contained in:
2025-07-07 03:22:16 +02:00
parent 4611ad87a8
commit d85ebc0e78
4 changed files with 42 additions and 22 deletions

View File

@@ -102,21 +102,24 @@ pass:
* A string to copy the config from a theme in `themes/` with said name
(**name**, e.g `"cherry"`).
* An attribute tree with the same names as the config file, e.g:
```nix
{
with config.lidm.keysEnum; {
strings = {
f_poweroff = "custom_poweroff";
# etc
};
behavior = {
include_defshell = true;
source = [
"path1"
"path2"
];
# etc
};
# etc
functions = { poweroff = F1; };
# etc...
};
```