oizys/modules/languages/nushell.nix

14 lines
193 B
Nix
Raw Permalink Normal View History

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