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