2021-03-14 07:10:51 +00:00
|
|
|
{ lib, nixos, dev, ... }:
|
|
|
|
{
|
|
|
|
# pkgImport :: Nixpkgs -> Overlays -> System -> Pkgs
|
|
|
|
pkgImport = nixpkgs: overlays: system:
|
|
|
|
import nixpkgs {
|
|
|
|
inherit system overlays;
|
|
|
|
config = { allowUnfree = true; };
|
|
|
|
};
|
|
|
|
|
|
|
|
profileMap = map (profile: profile.default);
|
|
|
|
|
|
|
|
mkNodes = dev.callLibs ./mkNodes.nix;
|
|
|
|
|
|
|
|
mkProfileAttrs = dev.callLibs ./mkProfileAttrs.nix;
|
|
|
|
|
|
|
|
mkPkgs = dev.callLibs ./mkPkgs.nix;
|
|
|
|
|
|
|
|
recImport = dev.callLibs ./recImport.nix;
|
|
|
|
|
|
|
|
devosSystem = dev.callLibs ./devosSystem.nix;
|
|
|
|
|
2021-03-23 14:37:11 +00:00
|
|
|
mkHomeConfigurations = dev.callLibs ./mkHomeConfigurations.nix;
|
2021-03-14 07:10:51 +00:00
|
|
|
|
|
|
|
mkPackages = dev.callLibs ./mkPackages.nix;
|
|
|
|
}
|
|
|
|
|