devos/flake.nix

102 lines
2.8 KiB
Nix
Raw Normal View History

2019-12-03 06:18:30 +01:00
{
2019-12-05 09:36:15 +01:00
description = "A highly structured configuration database.";
inputs =
{
override.url = "nixpkgs";
nixos.url = "nixpkgs/release-20.09";
home.url = "github:nix-community/home-manager/release-20.09";
home.inputs.nixpkgs.follows = "nixos";
2021-02-15 06:11:49 +01:00
utils.url = "github:numtide/flake-utils/flatten-tree-system";
2020-12-29 07:12:27 +01:00
devshell.url = "github:numtide/devshell";
nixos-hardware.url = "github:nixos/nixos-hardware";
2021-01-25 17:20:40 +01:00
ci-agent.url = "github:hercules-ci/hercules-ci-agent";
ci-agent.inputs.nixos-20_09.follows = "nixos";
2021-02-14 03:38:20 +01:00
ci-agent.inputs.nixos-unstable.follows = "override";
2021-02-15 06:08:24 +01:00
ci-agent.inputs.flake-compat.follows = "flake-compat";
deploy.url = "github:serokell/deploy-rs";
deploy.inputs.utils.follows = "utils";
deploy.inputs.naersk.follows = "naersk";
deploy.inputs.nixpkgs.follows = "override";
deploy.inputs.flake-compat.follows = "flake-compat";
naersk.url = "github:nmattia/naersk";
naersk.inputs.nixpkgs.follows = "override";
flake-compat.url = "github:BBBSnowball/flake-compat/pr-1";
2021-02-15 06:08:24 +01:00
flake-compat.flake = false;
srcs.url = "path:./pkgs";
};
2021-01-25 17:20:40 +01:00
outputs =
inputs@{ ci-agent
, deploy
, devshell
2021-01-25 17:20:40 +01:00
, home
, nixos
, nixos-hardware
, nur
2021-02-14 03:38:20 +01:00
, override
, self
2021-02-15 06:11:49 +01:00
, utils
2021-02-15 06:08:24 +01:00
, ...
2021-01-25 17:20:40 +01:00
}:
2020-01-04 06:06:31 +01:00
let
2021-02-15 06:11:49 +01:00
inherit (utils.lib) eachDefaultSystem flattenTreeSystem;
2021-02-15 19:24:43 +01:00
inherit (nixos.lib) recursiveUpdate;
inherit (self.lib) overlays nixosModules genPackages genPkgs
2021-02-15 19:24:43 +01:00
genHomeActivationPackages mkNodes;
extern = import ./extern { inherit inputs; };
pkgs' = genPkgs { inherit self; };
outputs =
let
system = "x86_64-linux";
pkgs = pkgs'.${system};
in
{
inherit nixosModules overlays;
nixosConfigurations =
import ./hosts (recursiveUpdate inputs {
inherit pkgs system extern;
inherit (pkgs) lib;
});
overlay = import ./pkgs;
2020-01-02 03:24:09 +01:00
2021-02-02 02:57:19 +01:00
lib = import ./lib { inherit nixos; };
templates.flk.path = ./.;
2020-08-02 06:29:42 +02:00
templates.flk.description = "flk template";
2020-08-02 06:29:42 +02:00
defaultTemplate = self.templates.flk;
2021-02-15 19:24:43 +01:00
deploy.nodes = mkNodes deploy self.nixosConfigurations;
checks = builtins.mapAttrs
(system: deployLib: deployLib.deployChecks self.deploy)
deploy.lib;
};
systemOutputs = eachDefaultSystem (system:
let pkgs = pkgs'.${system}; in
2021-01-25 17:21:27 +01:00
{
packages = flattenTreeSystem system
(genPackages {
inherit self pkgs;
});
2021-01-25 17:21:27 +01:00
devShell = import ./shell {
inherit self system;
2021-01-25 17:21:27 +01:00
};
legacyPackages.hmActivationPackages =
genHomeActivationPackages { inherit self; };
}
);
in
recursiveUpdate outputs systemOutputs;
2019-12-03 06:18:30 +01:00
}