feat(nix): add clang to rustup packages and disable update news
Some checks failed
Flake checker / Build Nix targets (push) Failing after 16s

This commit is contained in:
uttarayan21
2025-10-08 19:33:29 +05:30
parent ea58e4515f
commit 7169556a3d
2 changed files with 4 additions and 1 deletions

View File

@@ -5,7 +5,7 @@
}: {
home.packages = with pkgs;
[]
++ lib.optionals (!device.isServer) [rustup]
++ lib.optionals (!device.isServer) [rustup clang]
++ lib.optionals device.isLinux []
++ lib.optionals device.isDarwin [];
}