oizys/modules/languages/nushell.nix
2024-06-11 09:27:08 -05:00

19 lines
237 B
Nix

{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIfIn;
cfg = config.oizys.languages;
in
{
config = mkIfIn "nushell" cfg {
environment.systemPackages = with pkgs; [
nushell
nushellPlugins.polars
];
};
}