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

{
  machines = import ./machines;

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

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