6 lines
144 B
Nix
6 lines
144 B
Nix
|
{ stdenv, pkgs, lib }:
|
||
|
lib.head (lib.attrValues (import ./composition.nix {
|
||
|
inherit pkgs;
|
||
|
inherit (stdenv.hostPlatform) system;
|
||
|
}))
|