oizys/hosts/othalan/default.nix

29 lines
416 B
Nix
Raw Normal View History

2024-08-11 08:29:46 -05:00
{
enabled,
enableAttrs,
2024-08-12 11:39:14 -05:00
listify,
2024-08-11 08:29:46 -05:00
...
}:
2024-01-23 11:51:13 -06:00
{
2024-08-12 11:39:14 -05:00
oizys =
{
nix-ld = enabled // {
overkill = enabled;
};
2024-09-18 16:13:30 -05:00
languages =
"misc|nim|node|nushell|python|tex"
# + "roc|zig"
|> listify;
2024-08-12 11:39:14 -05:00
}
// (
2024-11-03 18:46:38 -06:00
# llm
2024-08-12 11:39:14 -05:00
''
vpn|desktop|hyprland|chrome
2024-11-03 18:46:38 -06:00
backups|hp-scanner
2024-10-19 18:17:00 -05:00
podman|docker|vbox
2024-08-12 11:39:14 -05:00
''
|> listify
|> enableAttrs
);
2024-01-23 11:51:13 -06:00
}