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