about summary refs log tree commit diff
path: root/default.nix
blob: d821b75e0cc73c2c94c009b3398a89e63c0de20c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ system ? builtins.currentSystem, ... }@args:

with (import (import ./nixpkgs-path.nix) { inherit system; }).lib;

{
  machines = import ./machines {
    inherit system;
  };

  pkgs = import ./pkgs {
    pkgs = import (import ./nixpkgs-path.nix) args;
  };

  lib = import "${import ./nixpkgs-path.nix}/lib" // import ./lib;
}