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