mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
18 lines
209 B
Nix
18 lines
209 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
inherit (lib) mkIfIn;
|
||
|
cfg = config.oizys.languages;
|
||
|
in
|
||
|
{
|
||
|
config = mkIfIn "nushell" cfg {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
nushell
|
||
|
];
|
||
|
};
|
||
|
}
|