2023-07-09 15:44:29 +04:00
|
|
|
{ outputs, options, config, lib, pkgs, ...}:
|
|
|
|
let
|
|
|
|
cfg = config.modules.dev.rust;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.modules.dev.rust= {
|
2024-08-01 16:24:09 +04:00
|
|
|
enable = lib.mkEnableOption false;
|
2023-07-09 15:44:29 +04:00
|
|
|
};
|
|
|
|
|
2024-08-01 16:24:09 +04:00
|
|
|
config = lib.mkIf cfg.enable {
|
2023-07-09 15:44:29 +04:00
|
|
|
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
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|