mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
deadnix + nixfmt
This commit is contained in:
parent
3547ecd3c5
commit
360cb79ea1
3 changed files with 11 additions and 8 deletions
|
@ -10,9 +10,11 @@
|
||||||
zig = inputs.zig2nix.outputs.packages.${pkgs.system}.zig.master.bin;
|
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 ];
|
]
|
||||||
|
++ [zig];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
}:
|
}:
|
||||||
(zig2nix.outputs.zig-env.${pkgs.system} {
|
(zig2nix.outputs.zig-env.${pkgs.system} {
|
||||||
zig = zig2nix.outputs.packages.${pkgs.system}.zig.master.bin;
|
zig = zig2nix.outputs.packages.${pkgs.system}.zig.master.bin;
|
||||||
}).package {
|
})
|
||||||
|
.package {
|
||||||
name = "oizys";
|
name = "oizys";
|
||||||
src = lib.cleanSource ./.;
|
src = lib.cleanSource ./.;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue