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