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