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-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-01-29 16:50:07 +01:00
|
|
|
outputs = inputs@{ self, home, nixpkgs }:
|
2020-01-04 06:06:31 +01:00
|
|
|
let
|
2020-01-06 08:01:00 +01:00
|
|
|
inherit (builtins) listToAttrs baseNameOf attrNames 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-01-04 06:06:31 +01:00
|
|
|
pkgs = import nixpkgs {
|
2020-01-29 16:50:07 +01:00
|
|
|
inherit system;
|
2020-01-04 06:06:31 +01:00
|
|
|
overlays = self.overlays;
|
2020-01-29 16:50:07 +01:00
|
|
|
config = { allowUnfree = true; };
|
2020-01-04 06:06:31 +01:00
|
|
|
};
|
2020-01-05 23:39:59 +01:00
|
|
|
|
2020-01-29 16:50:07 +01:00
|
|
|
in {
|
|
|
|
nixosConfigurations =
|
|
|
|
let configs = import ./hosts (inputs // { inherit system pkgs; });
|
|
|
|
in configs;
|
2020-01-02 03:24:09 +01:00
|
|
|
|
|
|
|
overlay = import ./pkgs;
|
|
|
|
|
2020-01-06 08:01:00 +01:00
|
|
|
overlays = let
|
|
|
|
overlays = map (name: import (./overlays + "/${name}"))
|
|
|
|
(attrNames (readDir ./overlays));
|
|
|
|
in overlays;
|
2020-01-02 03:24:09 +01:00
|
|
|
|
|
|
|
packages.x86_64-linux = {
|
2020-01-07 21:05:38 +01:00
|
|
|
inherit (pkgs) sddm-chili dejavu_nerdfont purs pure;
|
2019-12-31 01:45:30 +01:00
|
|
|
};
|
2019-12-05 06:36:36 +01:00
|
|
|
|
2020-01-05 00:08:49 +01:00
|
|
|
nixosModules = let
|
2020-01-05 00:23:15 +01:00
|
|
|
prep = map (path: {
|
2020-01-05 00:08:49 +01:00
|
|
|
name = removeSuffix ".nix" (baseNameOf path);
|
|
|
|
value = import path;
|
2020-01-05 00:23:15 +01:00
|
|
|
});
|
|
|
|
|
2020-01-11 06:39:42 +01:00
|
|
|
# modules
|
|
|
|
moduleList = import ./modules/list.nix;
|
2020-01-05 00:23:15 +01:00
|
|
|
modulesAttrs = listToAttrs (prep moduleList);
|
|
|
|
|
2020-01-11 06:39:42 +01:00
|
|
|
# profiles
|
|
|
|
profilesList = import ./profiles/list.nix;
|
2020-01-05 00:23:15 +01:00
|
|
|
profilesAttrs = { profiles = listToAttrs (prep 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
|
|
|
}
|