This commit is contained in:
Daylin Morgan 2024-04-24 15:08:43 -05:00
parent d13c4f77da
commit 8c114431b3
Signed by: daylin
GPG Key ID: 950D13E9719334AD
2 changed files with 6 additions and 8 deletions

View File

@ -689,11 +689,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1713229822, "lastModified": 1713576181,
"narHash": "sha256-ORV6WvzcQ24gjyIOpH29EgV/S273U68djDcBNBOiV4w=", "narHash": "sha256-vYvot66I7+58YjWaQldcZfNh4H2Mj2eE+PpYTjncBac=",
"owner": "Cloudef", "owner": "Cloudef",
"repo": "zig2nix", "repo": "zig2nix",
"rev": "37d64bb83c26bd8ac0e505cd78889ce9afa6775e", "rev": "59edca8316d1c395ac05474489b8ea9f26ebd53c",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -1,5 +1,4 @@
{ {
inputs,
config, config,
lib, lib,
pkgs, pkgs,
@ -7,14 +6,13 @@
}: let }: let
inherit (lib) mkIfIn; inherit (lib) mkIfIn;
cfg = config.oizys.languages; cfg = config.oizys.languages;
zig = inputs.zig2nix.outputs.packages.${pkgs.system}.zig.master.bin;
in { in {
config = mkIfIn "misc" cfg { config = mkIfIn "misc" cfg {
environment.systemPackages = with pkgs; environment.systemPackages = with pkgs;
[ [
go go
rustup rustup
] ];
++ [zig]; };
};
} }