oizys/hosts/othalan/default.nix
2024-08-29 09:45:30 -05:00

28 lines
452 B
Nix

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