2019-12-02 22:18:30 -07:00
|
|
|
{
|
2019-12-05 01:36:15 -07:00
|
|
|
description = "A highly structured configuration database.";
|
2019-12-04 22:36:36 -07:00
|
|
|
|
2020-04-23 12:03:55 -06:00
|
|
|
inputs.nixpkgs.url = "nixpkgs/release-20.03";
|
2020-06-12 19:18:27 -06:00
|
|
|
inputs.unstable.url = "nixpkgs/nixos-unstable";
|
2020-06-09 10:37:23 -06:00
|
|
|
inputs.home.url = "github:rycee/home-manager/bqv-flakes";
|
2019-12-13 21:39:25 -07:00
|
|
|
|
2020-06-12 19:18:27 -06:00
|
|
|
outputs = inputs@{ self, home, nixpkgs, unstable }:
|
2020-01-03 22:06:31 -07:00
|
|
|
let
|
2020-06-02 01:17:38 +02:00
|
|
|
inherit (builtins) listToAttrs baseNameOf attrNames attrValues readDir;
|
2020-01-04 16:08:49 -07:00
|
|
|
inherit (nixpkgs.lib) removeSuffix;
|
2020-01-29 08:50:07 -07:00
|
|
|
system = "x86_64-linux";
|
2020-01-04 16:08:49 -07: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-12 19:18:27 -06:00
|
|
|
pkgImport = pkgs:
|
|
|
|
import pkgs {
|
|
|
|
inherit system;
|
|
|
|
overlays = attrValues self.overlays;
|
|
|
|
config = { allowUnfree = true; };
|
|
|
|
};
|
|
|
|
|
|
|
|
pkgs = pkgImport nixpkgs;
|
|
|
|
|
|
|
|
unstablePkgs = pkgImport unstable;
|
2020-01-05 15:39:59 -07:00
|
|
|
|
2020-01-29 08:50:07 -07:00
|
|
|
in {
|
2020-06-12 19:18:27 -06:00
|
|
|
nixosConfigurations = let
|
|
|
|
configs =
|
|
|
|
import ./hosts (inputs // { inherit system pkgs unstablePkgs; });
|
|
|
|
in configs;
|
2020-01-01 19:24:09 -07:00
|
|
|
|
|
|
|
overlay = import ./pkgs;
|
|
|
|
|
2020-06-12 19:18:27 -06:00
|
|
|
overlays = let
|
|
|
|
overlayDir = ./overlays;
|
|
|
|
fullPath = name: overlayDir + "/${name}";
|
|
|
|
overlayPaths = map fullPath (attrNames (readDir overlayDir));
|
|
|
|
in pathsToImportedAttrs overlayPaths;
|
2020-01-01 19:24:09 -07:00
|
|
|
|
|
|
|
packages.x86_64-linux = {
|
2020-01-07 13:05:38 -07:00
|
|
|
inherit (pkgs) sddm-chili dejavu_nerdfont purs pure;
|
2019-12-30 17:45:30 -07:00
|
|
|
};
|
2019-12-04 22:36:36 -07:00
|
|
|
|
2020-01-04 16:08:49 -07:00
|
|
|
nixosModules = let
|
2020-01-10 22:39:42 -07:00
|
|
|
# modules
|
|
|
|
moduleList = import ./modules/list.nix;
|
2020-06-02 01:14:33 +02:00
|
|
|
modulesAttrs = pathsToImportedAttrs moduleList;
|
2020-01-04 16:23:15 -07:00
|
|
|
|
2020-01-10 22:39:42 -07:00
|
|
|
# profiles
|
|
|
|
profilesList = import ./profiles/list.nix;
|
2020-06-02 01:14:33 +02:00
|
|
|
profilesAttrs = { profiles = pathsToImportedAttrs profilesList; };
|
2020-01-10 22:39:42 -07:00
|
|
|
|
2020-01-04 16:08:49 -07:00
|
|
|
in modulesAttrs // profilesAttrs;
|
2020-01-01 19:24:09 -07:00
|
|
|
};
|
2019-12-02 22:18:30 -07:00
|
|
|
}
|