mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
6 lines
183 B
Nix
6 lines
183 B
Nix
|
{ system ? builtins.currentSystem }:
|
||
|
{
|
||
|
example-config = import ./example-config.nix { inherit system; };
|
||
|
deprecated-config = import ./deprecated-config.nix { inherit system; };
|
||
|
}
|