pub-solar-os/flake.nix

87 lines
2.3 KiB
Nix
Raw Normal View History

2019-12-03 05:18:30 +00:00
{
2019-12-05 08:36:15 +00: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 05:11:49 +00:00
utils.url = "github:numtide/flake-utils/flatten-tree-system";
2020-12-29 06:12:27 +00:00
devshell.url = "github:numtide/devshell";
nixos-hardware.url = "github:nixos/nixos-hardware";
2021-01-25 16:20:40 +00:00
ci-agent.url = "github:hercules-ci/hercules-ci-agent";
ci-agent.inputs.nixos-20_09.follows = "nixos";
2021-02-14 02:38:20 +00:00
ci-agent.inputs.nixos-unstable.follows = "override";
2021-02-15 05:08:24 +00:00
ci-agent.inputs.flake-compat.follows = "flake-compat";
flake-compat.url = "github:edolstra/flake-compat";
flake-compat.flake = false;
};
2021-01-25 16:20:40 +00:00
outputs =
inputs@{ self
, ci-agent
, home
, nixos
2021-02-14 02:38:20 +00:00
, override
2021-02-15 05:11:49 +00:00
, utils
2021-01-25 16:20:40 +00:00
, nur
, devshell
, nixos-hardware
2021-02-15 05:08:24 +00:00
, ...
2021-01-25 16:20:40 +00:00
}:
2020-01-04 05:06:31 +00:00
let
2021-02-15 05:11:49 +00:00
inherit (utils.lib) eachDefaultSystem flattenTreeSystem;
inherit (nixos.lib) recursiveUpdate;
inherit (self.lib) overlays nixosModules genPackages genPkgs
genHomeActivationPackages;
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 02:24:09 +00:00
2021-02-02 01:57:19 +00:00
lib = import ./lib { inherit nixos; };
templates.flk.path = ./.;
2020-08-02 04:29:42 +00:00
templates.flk.description = "flk template";
2020-08-02 04:29:42 +00:00
defaultTemplate = self.templates.flk;
};
systemOutputs = eachDefaultSystem (system:
let pkgs = pkgs'.${system}; in
2021-01-25 16:21:27 +00:00
{
packages = flattenTreeSystem system
(genPackages {
inherit self pkgs;
});
2021-01-25 16:21:27 +00:00
devShell = import ./shell {
inherit self system;
2021-01-25 16:21:27 +00:00
};
legacyPackages.hmActivationPackages =
genHomeActivationPackages { inherit self; };
}
);
in
recursiveUpdate outputs systemOutputs;
2019-12-03 05:18:30 +00:00
}