mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
less boilerplate
This commit is contained in:
parent
7b04cf6274
commit
49b9b107a4
1 changed files with 4 additions and 6 deletions
|
@ -33,12 +33,10 @@ in rec {
|
|||
};
|
||||
|
||||
oizysHosts = mapAttrs (name: _: mkSystem name) (readDir ../hosts);
|
||||
oizysPkg = forAllSystems (
|
||||
pkgs: let
|
||||
pkg = pkgs.callPackage ../oizys {};
|
||||
in {
|
||||
oizys = pkg;
|
||||
default = pkg;
|
||||
oizysPkg = forAllSystems (pkgs:
|
||||
rec {
|
||||
oizys = pkgs.callPackage ../oizys {};
|
||||
default = oizys;
|
||||
}
|
||||
);
|
||||
devShells = forAllSystems (
|
||||
|
|
Loading…
Reference in a new issue