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