add nu-polars to nixos

This commit is contained in:
Daylin Morgan 2024-11-20 23:50:35 -06:00
parent 351af9045f
commit 0809fdeda5
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -9,5 +9,10 @@ let
cfg = config.oizys.languages; cfg = config.oizys.languages;
in in
{ {
config = mkIfIn "nushell" cfg { environment.systemPackages = with pkgs; [ nushell ]; }; config = mkIfIn "nushell" cfg {
environment.systemPackages = with pkgs; [
nushell
nushellPlugins.polars
];
};
} }