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 { config = mkIf config.components.rust.enable {
environment.systemPackages = [ environment.systemPackages = with pkgs; [
pkgs.rustup rustup gcc
] ++ (if config.components.rust.repl then [ pkgs.evcxr ] else [ ]); ] ++ (if config.components.rust.repl then [ pkgs.evcxr ] else [ ]);
environment.shellAliases = mkIf config.components.rust.repl { environment.shellAliases = mkIf config.components.rust.repl {