add gcc to dev module

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-02-04 16:00:10 -06:00
parent 04434257fb
commit 8f49d217bc

View file

@ -39,8 +39,8 @@ in
};
config = mkIf config.components.rust.enable {
environment.systemPackages = [
pkgs.rustup
environment.systemPackages = with pkgs; [
rustup gcc
] ++ (if config.components.rust.repl then [ pkgs.evcxr ] else [ ]);
environment.shellAliases = mkIf config.components.rust.repl {