22 lines
391 B
Nix
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" ];
|
|
# };
|
|
}
|