oizys/hosts/othalan/default.nix

27 lines
381 B
Nix
Raw Normal View History

2024-08-11 08:29:46 -05:00
{
lib,
config,
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;
};
languages = "misc|nim|node|nushell|python|roc|tex|zig" |> listify;
}
// (
''
vpn|desktop|hyprland|chrome
docker|vbox|backups|hp-scanner|llm
''
|> listify
|> enableAttrs
);
2024-01-23 11:51:13 -06:00
}