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-08-02 06:08:41 +02:00
|
|
|
inputs =
|
|
|
|
{
|
|
|
|
master.url = "nixpkgs/master";
|
2020-12-02 04:16:04 +01:00
|
|
|
nixos.url = "nixpkgs/release-20.09";
|
|
|
|
home.url = "github:nix-community/home-manager/release-20.09";
|
2020-08-02 06:08:41 +02:00
|
|
|
};
|
2019-12-14 05:39:25 +01:00
|
|
|
|
2020-08-02 06:08:41 +02:00
|
|
|
outputs = inputs@{ self, home, nixos, master }:
|
2020-01-04 06:06:31 +01:00
|
|
|
let
|
2020-07-30 23:29:58 +02:00
|
|
|
inherit (builtins) attrNames attrValues readDir;
|
2020-08-02 06:08:41 +02:00
|
|
|
inherit (nixos) lib;
|
2020-08-03 05:26:00 +02:00
|
|
|
inherit (lib) removeSuffix recursiveUpdate genAttrs filterAttrs;
|
2020-07-30 23:29:58 +02:00
|
|
|
inherit (utils) pathsToImportedAttrs;
|
2020-01-05 00:08:49 +01:00
|
|
|
|
2020-07-30 23:29:58 +02:00
|
|
|
utils = import ./lib/utils.nix { inherit lib; };
|
2020-06-02 01:14:33 +02:00
|
|
|
|
2020-07-30 23:29:58 +02:00
|
|
|
system = "x86_64-linux";
|
2020-06-02 01:14:33 +02:00
|
|
|
|
2020-06-13 03:18:27 +02:00
|
|
|
pkgImport = pkgs:
|
|
|
|
import pkgs {
|
|
|
|
inherit system;
|
|
|
|
overlays = attrValues self.overlays;
|
|
|
|
config = { allowUnfree = true; };
|
|
|
|
};
|
|
|
|
|
2020-08-02 06:08:41 +02:00
|
|
|
pkgset = {
|
|
|
|
osPkgs = pkgImport nixos;
|
|
|
|
pkgs = pkgImport master;
|
|
|
|
};
|
2020-01-05 23:39:59 +01:00
|
|
|
|
2020-07-31 06:17:28 +02:00
|
|
|
in
|
2020-08-02 06:08:41 +02:00
|
|
|
with pkgset;
|
2020-07-31 06:17:28 +02:00
|
|
|
{
|
2020-07-30 23:29:58 +02:00
|
|
|
nixosConfigurations =
|
2020-07-31 07:32:53 +02:00
|
|
|
import ./hosts (recursiveUpdate inputs {
|
2020-08-02 06:08:41 +02:00
|
|
|
inherit lib pkgset system utils;
|
2020-07-31 07:32:53 +02:00
|
|
|
}
|
|
|
|
);
|
2020-01-02 03:24:09 +01:00
|
|
|
|
2020-08-02 06:08:41 +02:00
|
|
|
devShell."${system}" = import ./shell.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
2020-07-14 04:00:47 +02:00
|
|
|
|
2020-01-02 03:24:09 +01:00
|
|
|
overlay = import ./pkgs;
|
|
|
|
|
2020-07-31 06:17:28 +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-08-03 05:26:00 +02:00
|
|
|
packages."${system}" =
|
|
|
|
let
|
|
|
|
packages = self.overlay osPkgs osPkgs;
|
|
|
|
overlays = lib.filterAttrs (n: v: n != "pkgs") self.overlays;
|
|
|
|
overlayPkgs =
|
|
|
|
genAttrs
|
|
|
|
(attrNames overlays)
|
|
|
|
(name: (overlays."${name}" osPkgs osPkgs)."${name}");
|
|
|
|
in
|
|
|
|
recursiveUpdate packages overlayPkgs;
|
2019-12-05 06:36:36 +01:00
|
|
|
|
2020-07-31 06:17:28 +02:00
|
|
|
nixosModules =
|
|
|
|
let
|
|
|
|
# binary cache
|
|
|
|
cachix = import ./cachix.nix;
|
|
|
|
cachixAttrs = { inherit cachix; };
|
2020-07-27 00:03:51 +02:00
|
|
|
|
2020-07-31 06:17:28 +02:00
|
|
|
# modules
|
|
|
|
moduleList = import ./modules/list.nix;
|
|
|
|
modulesAttrs = pathsToImportedAttrs moduleList;
|
2020-01-05 00:23:15 +01:00
|
|
|
|
2020-07-31 06:17:28 +02:00
|
|
|
# profiles
|
|
|
|
profilesList = import ./profiles/list.nix;
|
|
|
|
profilesAttrs = { profiles = pathsToImportedAttrs profilesList; };
|
2020-01-11 06:39:42 +01:00
|
|
|
|
2020-07-31 06:17:28 +02:00
|
|
|
in
|
2020-07-31 07:32:53 +02:00
|
|
|
recursiveUpdate
|
|
|
|
(recursiveUpdate cachixAttrs modulesAttrs)
|
|
|
|
profilesAttrs;
|
2020-08-02 06:29:42 +02:00
|
|
|
|
|
|
|
templates.flk.path = ./.;
|
|
|
|
templates.flk.description = "flk template";
|
|
|
|
|
|
|
|
defaultTemplate = self.templates.flk;
|
2020-01-02 03:24:09 +01:00
|
|
|
};
|
2019-12-03 06:18:30 +01:00
|
|
|
}
|