feat(programs): update package list and remove clang from rustup
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled

This commit is contained in:
uttarayan21
2025-10-10 19:10:22 +05:30
parent 8648f85372
commit 04c0eac534
3 changed files with 15 additions and 4 deletions

10
home/programs/xh.nix Normal file
View File

@@ -0,0 +1,10 @@
{
pkgs,
lib,
device,
...
}: {
home.packages = lib.optionals (device.is "ryu" || device.is "kuro") [
pkgs.xh
];
}