Files
nix/home/common/programs/rust.nix
T
Miguel Palhas 80846e8671 rust-dev
2025-02-03 14:29:01 +00:00

22 lines
391 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
rustup
bacon
mprocs
pkg-config
openssl.dev
taplo
sccache
];
home.sessionPath = [ "\${CARGO_HOME:-~/.cargo}/bin" ];
# systemd.user.services.ra-multiplex = {
# Service = {
# ExecStart = "${pkgs.ra-multiplex}/bin/ra-multiplex server";
# };
# Install.WantedBy = [ "default.target" ];
# };
}