mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
27 lines
408 B
Nix
27 lines
408 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
|
|
backups|hp-scanner|llm
|
|
podman|docker|vbox
|
|
''
|
|
|> listify
|
|
|> enableAttrs
|
|
);
|
|
}
|