Files
Nixos/modules/home/common/env/rust.nix
T
2026-02-14 07:43:00 +01:00

27 lines
328 B
Nix

{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.env.rust;
in
{
options.home.env.rust = {
enable = mkEnableOption "Zen Editor options";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
rustup
];
home.sessionVariables = {
RUSTUP_HOME = ".rustup";
};
};
}