oizys/modules/langs/misc.nix

18 lines
288 B
Nix
Raw Normal View History

2024-01-23 19:13:42 -06:00
{
config,
lib,
pkgs,
...
}: let
2024-01-23 15:36:52 -06:00
inherit (lib) mkEnableOption mkIf;
cfg = config.languages.misc;
2024-01-23 19:13:42 -06:00
in {
2024-01-23 15:36:52 -06:00
options.languages.misc.enable = mkEnableOption "go + rustup";
config = mkIf cfg.enable {
2024-01-23 19:13:42 -06:00
environment.systemPackages = with pkgs; [
go
rustup
];
};
2024-01-23 11:51:13 -06:00
}