2023-07-09 15:44:29 +04:00
|
|
|
{ outputs, options, config, lib, pkgs, ...}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.modules.dev.rust;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.modules.dev.rust= {
|
|
|
|
enable = mkEnableOption false;
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
users.users.sako.packages = with pkgs; [
|
|
|
|
rustup
|
|
|
|
cargo
|
2023-08-28 13:41:10 +04:00
|
|
|
rust-analyzer
|
2023-07-09 15:44:29 +04:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|