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
|
|
|
|
2020-08-02 07:08:41 +03:00
|
|
|
inputs =
|
|
|
|
{
|
2021-01-11 22:26:25 +03:00
|
|
|
# Once desired, bump master's locked revision:
|
2021-01-11 22:14:48 +03:00
|
|
|
# nix flake update --update-input master
|
2020-08-02 07:08:41 +03:00
|
|
|
master.url = "nixpkgs/master";
|
2020-12-02 06:16:04 +03:00
|
|
|
nixos.url = "nixpkgs/release-20.09";
|
|
|
|
home.url = "github:nix-community/home-manager/release-20.09";
|
2021-01-03 10:05:39 +03:00
|
|
|
flake-utils.url = "github:numtide/flake-utils/flatten-tree-system";
|
2020-12-29 09:12:27 +03:00
|
|
|
devshell.url = "github:numtide/devshell";
|
2021-01-18 10:37:11 +03:00
|
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
2020-08-02 07:08:41 +03:00
|
|
|
};
|
2019-12-14 07:39:25 +03:00
|
|
|
|
2021-01-18 10:37:11 +03:00
|
|
|
outputs = inputs@{ self, home, nixos, master, flake-utils, nur, devshell, nixos-hardware }:
|
2020-01-04 08:06:31 +03:00
|
|
|
let
|
2021-01-03 10:05:39 +03:00
|
|
|
inherit (builtins) attrNames attrValues elem pathExists;
|
|
|
|
inherit (flake-utils.lib) eachDefaultSystem mkApp flattenTreeSystem;
|
2020-08-02 07:08:41 +03:00
|
|
|
inherit (nixos) lib;
|
2021-01-03 10:05:39 +03:00
|
|
|
inherit (lib) recursiveUpdate filterAttrs mapAttrs;
|
2020-12-25 22:53:57 +03:00
|
|
|
inherit (utils) pathsToImportedAttrs genPkgset overlayPaths modules
|
2020-12-28 07:19:45 +03:00
|
|
|
genPackages pkgImport;
|
2020-01-05 02:08:49 +03:00
|
|
|
|
2020-07-31 00:29:58 +03:00
|
|
|
utils = import ./lib/utils.nix { inherit lib; };
|
2020-06-02 02:14:33 +03:00
|
|
|
|
2020-12-29 09:12:27 +03:00
|
|
|
externOverlays = [ nur.overlay devshell.overlay ];
|
2020-12-29 01:07:15 +03:00
|
|
|
externModules = [ home.nixosModules.home-manager ];
|
2020-01-06 01:39:59 +03:00
|
|
|
|
2021-01-18 12:23:49 +03:00
|
|
|
pkgs' = unstable:
|
|
|
|
let
|
|
|
|
override = import ./pkgs/override.nix;
|
|
|
|
overlays = (attrValues self.overlays)
|
|
|
|
++ externOverlays
|
|
|
|
++ [ self.overlay (override unstable) ];
|
|
|
|
in
|
|
|
|
pkgImport nixos overlays;
|
|
|
|
|
|
|
|
unstable' = pkgImport master [ ];
|
|
|
|
|
2021-01-03 10:05:39 +03:00
|
|
|
osSystem = "x86_64-linux";
|
2020-01-02 05:24:09 +03:00
|
|
|
|
2021-01-03 10:05:39 +03:00
|
|
|
outputs =
|
|
|
|
let
|
|
|
|
system = osSystem;
|
2021-01-18 12:23:49 +03:00
|
|
|
unstablePkgs = unstable' system;
|
|
|
|
osPkgs = pkgs' unstablePkgs system;
|
2021-01-03 10:05:39 +03:00
|
|
|
in
|
|
|
|
{
|
|
|
|
nixosConfigurations =
|
|
|
|
import ./hosts (recursiveUpdate inputs {
|
2021-01-18 12:23:49 +03:00
|
|
|
inherit lib osPkgs unstablePkgs utils externModules system;
|
2021-01-03 10:05:39 +03:00
|
|
|
});
|
2020-07-14 05:00:47 +03:00
|
|
|
|
2021-01-03 10:05:39 +03:00
|
|
|
overlay = import ./pkgs;
|
2020-01-02 05:24:09 +03:00
|
|
|
|
2021-01-03 10:05:39 +03:00
|
|
|
overlays = pathsToImportedAttrs overlayPaths;
|
2020-01-02 05:24:09 +03:00
|
|
|
|
2021-01-03 10:05:39 +03:00
|
|
|
nixosModules = modules;
|
2020-01-11 08:39:42 +03:00
|
|
|
|
2021-01-03 10:05:39 +03:00
|
|
|
templates.flk.path = ./.;
|
2020-08-02 07:29:42 +03:00
|
|
|
|
2021-01-03 10:05:39 +03:00
|
|
|
templates.flk.description = "flk template";
|
2020-08-02 07:29:42 +03:00
|
|
|
|
2021-01-03 10:05:39 +03:00
|
|
|
defaultTemplate = self.templates.flk;
|
|
|
|
};
|
2020-12-28 07:19:45 +03:00
|
|
|
in
|
2021-01-12 04:10:48 +03:00
|
|
|
recursiveUpdate
|
|
|
|
(eachDefaultSystem
|
|
|
|
(system:
|
|
|
|
let
|
2021-01-18 12:23:49 +03:00
|
|
|
unstablePkgs = unstable' system;
|
|
|
|
pkgs = pkgs' unstablePkgs system;
|
2020-12-29 06:33:26 +03:00
|
|
|
|
2021-01-12 04:10:48 +03:00
|
|
|
packages = flattenTreeSystem system
|
2021-01-03 10:05:39 +03:00
|
|
|
(genPackages {
|
|
|
|
inherit self pkgs;
|
2021-01-12 04:10:48 +03:00
|
|
|
});
|
|
|
|
in
|
|
|
|
{
|
|
|
|
inherit packages;
|
2020-12-29 06:33:26 +03:00
|
|
|
|
2021-01-12 04:10:48 +03:00
|
|
|
devShell = import ./shell.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
outputs;
|
2019-12-03 08:18:30 +03:00
|
|
|
}
|