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

23 lines
248 B
Nix

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