Improve folder structure

This commit is contained in:
Dave Gallant
2021-01-16 23:31:14 -05:00
parent 3e13f04043
commit 73e8011316
11 changed files with 300 additions and 164 deletions

12
nix/lib/default.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, lib, ... }:
with lib; rec {
pkgsImport = pkgs:
import pkgs {
config = config.nixpkgs.config;
overlays = config.nixpkgs.overlays;
system = config.nixpkgs.system;
};
}