Files
dotfiles/home/programs/rustup.nix
uttarayan21 04c0eac534
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat(programs): update package list and remove clang from rustup
2025-10-10 19:11:28 +05:30

12 lines
198 B
Nix

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