oizys/modules/languages/nushell.nix

19 lines
237 B
Nix
Raw Normal View History

2024-06-11 09:27:08 -05:00
{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIfIn;
cfg = config.oizys.languages;
in
{
config = mkIfIn "nushell" cfg {
environment.systemPackages = with pkgs; [
nushell
nushellPlugins.polars
];
};
}