add gcc to dev module

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-02-04 16:00:10 -06:00
parent 4ed398b5e5
commit 6b82f6a73c

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 {