os/flake.nix

93 lines
2.4 KiB
Nix
Raw Normal View History

2019-12-03 05:18:30 +00:00
{
2019-12-05 08:36:15 +00:00
description = "A highly structured configuration database.";
inputs =
{
master.url = "nixpkgs/master";
nixos.url = "nixpkgs/release-20.03";
home.url = "github:rycee/home-manager/bqv-flakes";
};
outputs = inputs@{ self, home, nixos, master }:
2020-01-04 05:06:31 +00:00
let
inherit (builtins) attrNames attrValues readDir;
inherit (nixos) lib;
2020-08-03 03:26:00 +00:00
inherit (lib) removeSuffix recursiveUpdate genAttrs filterAttrs;
inherit (utils) pathsToImportedAttrs;
utils = import ./lib/utils.nix { inherit lib; };
system = "x86_64-linux";
pkgImport = pkgs:
import pkgs {
inherit system;
overlays = attrValues self.overlays;
config = { allowUnfree = true; };
};
pkgset = {
osPkgs = pkgImport nixos;
pkgs = pkgImport master;
};
2020-07-31 04:17:28 +00:00
in
with pkgset;
2020-07-31 04:17:28 +00:00
{
nixosConfigurations =
import ./hosts (recursiveUpdate inputs {
inherit lib pkgset system utils;
}
);
2020-01-02 02:24:09 +00:00
devShell."${system}" = import ./shell.nix {
inherit pkgs;
};
2020-01-02 02:24:09 +00:00
overlay = import ./pkgs;
2020-07-31 04:17:28 +00:00
overlays =
let
overlayDir = ./overlays;
fullPath = name: overlayDir + "/${name}";
overlayPaths = map fullPath (attrNames (readDir overlayDir));
in
pathsToImportedAttrs overlayPaths;
2020-01-02 02:24:09 +00:00
2020-08-03 03:26:00 +00:00
packages."${system}" =
let
packages = self.overlay osPkgs osPkgs;
overlays = lib.filterAttrs (n: v: n != "pkgs") self.overlays;
overlayPkgs =
genAttrs
(attrNames overlays)
(name: (overlays."${name}" osPkgs osPkgs)."${name}");
in
recursiveUpdate packages overlayPkgs;
2020-07-31 04:17:28 +00:00
nixosModules =
let
# binary cache
cachix = import ./cachix.nix;
cachixAttrs = { inherit cachix; };
2020-07-31 04:17:28 +00:00
# modules
moduleList = import ./modules/list.nix;
modulesAttrs = pathsToImportedAttrs moduleList;
2020-07-31 04:17:28 +00:00
# profiles
profilesList = import ./profiles/list.nix;
profilesAttrs = { profiles = pathsToImportedAttrs profilesList; };
2020-07-31 04:17:28 +00:00
in
recursiveUpdate
(recursiveUpdate cachixAttrs modulesAttrs)
profilesAttrs;
2020-08-02 04:29:42 +00:00
templates.flk.path = ./.;
templates.flk.description = "flk template";
defaultTemplate = self.templates.flk;
2020-01-02 02:24:09 +00:00
};
2019-12-03 05:18:30 +00:00
}