mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
10 lines
176 B
Nix
10 lines
176 B
Nix
|
{system, derivations, manifest}:
|
||
|
|
||
|
derivation {
|
||
|
name = "user-environment";
|
||
|
system = system;
|
||
|
builder = ./builder.pl;
|
||
|
derivations = derivations;
|
||
|
manifest = manifest;
|
||
|
}
|