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-06-02 01:17:38 +02:00
|
|
|
inherit (builtins) listToAttrs baseNameOf attrNames attrValues readDir;
|
2020-01-05 00:08:49 +01:00
|
|
|
inherit (nixpkgs.lib) removeSuffix;
|
2020-01-29 16:50:07 +01:00
|
|
|
system = "x86_64-linux";
|
2020-01-05 00:08:49 +01:00
|
|
|
|
2020-06-02 01:14:33 +02:00
|
|
|
# Generate an attribute set by mapping a function over a list of values.
|
|
|
|
genAttrs' = values: f: listToAttrs (map f values);
|
|
|
|
|
|
|
|
# Convert a list to file paths to attribute set
|
|
|
|
# that has the filenames stripped of nix extension as keys
|
|
|
|
# and imported content of the file as value.
|
|
|
|
pathsToImportedAttrs = paths:
|
|
|
|
genAttrs' paths (path: {
|
|
|
|
name = removeSuffix ".nix" (baseNameOf path);
|
|
|
|
value = import path;
|
|
|
|
});
|
|
|
|
|
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-01-29 16:50:07 +01:00
|
|
|
in {
|
2020-06-13 03:18:27 +02:00
|
|
|
nixosConfigurations = let
|
|
|
|
configs =
|
|
|
|
import ./hosts (inputs // { inherit system pkgs unstablePkgs; });
|
|
|
|
in configs;
|
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-06-13 03:18:27 +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-06-19 22:55:30 +02:00
|
|
|
packages.x86_64-linux = self.overlay pkgs pkgs;
|
2019-12-05 06:36:36 +01:00
|
|
|
|
2020-01-05 00:08:49 +01:00
|
|
|
nixosModules = let
|
2020-01-11 06:39:42 +01:00
|
|
|
# modules
|
|
|
|
moduleList = import ./modules/list.nix;
|
2020-06-02 01:14:33 +02:00
|
|
|
modulesAttrs = pathsToImportedAttrs moduleList;
|
2020-01-05 00:23:15 +01:00
|
|
|
|
2020-01-11 06:39:42 +01:00
|
|
|
# profiles
|
|
|
|
profilesList = import ./profiles/list.nix;
|
2020-06-02 01:14:33 +02:00
|
|
|
profilesAttrs = { profiles = pathsToImportedAttrs profilesList; };
|
2020-01-11 06:39:42 +01:00
|
|
|
|
2020-01-05 00:08:49 +01:00
|
|
|
in modulesAttrs // profilesAttrs;
|
2020-01-02 03:24:09 +01:00
|
|
|
};
|
2019-12-03 06:18:30 +01:00
|
|
|
}
|