oizys/modules/languages/nushell.nix

20 lines
249 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
2024-06-11 10:56:38 -05:00
nufmt
2024-06-11 09:27:08 -05:00
nushellPlugins.polars
];
};
}