oizys/modules/languages/nushell.nix

20 lines
249 B
Nix

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