oizys/hosts/othalan/default.nix
2024-09-18 16:13:30 -05:00

28 lines
394 B
Nix

{
enabled,
enableAttrs,
listify,
...
}:
{
oizys =
{
nix-ld = enabled // {
overkill = enabled;
};
languages =
"misc|nim|node|nushell|python|tex"
# + "roc|zig"
|> listify;
}
// (
''
vpn|desktop|hyprland|chrome
docker|vbox|backups|hp-scanner|llm
''
|> listify
|> enableAttrs
);
}