nixos configs
at main 20 lines 305 B view raw
1{ pkgs, config, ... }: 2{ 3 home.packages = 4 with pkgs; 5 [ 6 rustup 7 ] 8 ++ ( 9 if config.isMacOS then 10 [ ] 11 else 12 with pkgs; 13 [ 14 clang 15 mold 16 wild-unwrapped 17 ] 18 ); 19 home.file.".cargo/config.toml".source = ./config.toml; 20}