depot/flake.nix

127 lines
3.2 KiB
Nix
Raw Normal View History

2021-06-05 22:59:06 +02:00
{
description = "Private Void system configurations";
2022-07-31 20:08:19 +02:00
nixConfig = {
2023-07-20 00:05:18 +02:00
#allow-import-from-derivation = true;
2022-07-31 20:08:19 +02:00
extra-substituters = "https://cache.privatevoid.net";
extra-trusted-public-keys = "cache.privatevoid.net:SErQ8bvNWANeAvtsOESUwVYr2VJynfuc9JRwlzTTkVg=";
};
2021-06-05 22:59:06 +02:00
2022-07-31 14:26:18 +02:00
outputs = { self, nixpkgs, flake-parts, ... }@inputs:
2023-02-24 15:16:15 +01:00
flake-parts.lib.mkFlake { inherit inputs; } {
2022-02-03 20:20:59 +01:00
systems = [ "x86_64-linux" "aarch64-linux" ];
2023-04-12 23:37:51 +02:00
herculesCI.ciSystems = [ "x86_64-linux" "aarch64-linux" ];
2022-02-03 20:20:59 +01:00
2022-07-31 15:09:40 +02:00
imports = [
2023-02-24 15:16:15 +01:00
inputs.hercules-ci-effects.flakeModule
inputs.drv-parts.modules.flake-parts.drv-parts
2023-02-24 15:16:15 +01:00
./hosts/part.nix
./modules/part.nix
2022-07-31 15:09:40 +02:00
./packages/part.nix
./jobs/part.nix
2023-08-23 20:42:51 +02:00
./lib/part.nix
2023-08-31 00:55:45 +02:00
./cluster/part.nix
2022-07-31 15:09:40 +02:00
];
2021-06-05 22:59:06 +02:00
};
2022-07-31 21:24:46 +02:00
inputs = {
2023-05-13 16:40:21 +02:00
systems.url = "github:privatevoid-net/nix-systems-default-linux";
2023-06-02 15:52:17 +02:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05-small";
2022-07-31 21:24:46 +02:00
nix-super = {
2022-09-04 13:20:30 +02:00
url = "gitlab:max/nix-super?host=git.privatevoid.net";
2022-10-16 21:59:11 +02:00
inputs = {
nixpkgs.follows = "nixpkgs";
nixpkgs-regression.follows = "blank";
};
2022-07-31 21:24:46 +02:00
};
deploy-rs = {
url = "gitlab:max/deploy-rs?host=git.privatevoid.net";
inputs = {
nixpkgs.follows = "nixpkgs";
2022-10-16 21:59:11 +02:00
flake-compat.follows = "blank";
2022-07-31 21:24:46 +02:00
utils.follows = "repin-flake-utils";
};
};
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-06-13 00:04:34 +02:00
attic = {
url = "github:zhaofengli/attic";
inputs = {
nixpkgs.follows = "nixpkgs";
nixpkgs-stable.follows = "nixpkgs";
flake-compat.follows = "blank";
flake-utils.follows = "repin-flake-utils";
};
};
2022-07-31 21:24:46 +02:00
nar-serve = {
url = "github:numtide/nar-serve/v0.5.0";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "repin-flake-utils";
};
};
devshell = {
url = "github:numtide/devshell";
inputs = {
nixpkgs.follows = "nixpkgs";
2023-05-13 16:40:21 +02:00
systems.follows = "systems";
2022-07-31 21:24:46 +02:00
};
};
mms = {
url = "github:mkaito/nixos-modded-minecraft-servers";
inputs = {
nixpkgs.follows = "nixpkgs";
nix.follows = "nix-super";
2022-10-16 21:59:11 +02:00
flake-compat.follows = "blank";
2022-07-31 21:24:46 +02:00
flake-utils.follows = "repin-flake-utils";
};
};
hercules-ci-agent = {
url = "github:hercules-ci/hercules-ci-agent/experimental-0.10";
2022-07-31 21:24:46 +02:00
inputs = {
flake-parts.follows = "flake-parts";
};
};
hercules-ci-effects = {
url = "github:hercules-ci/hercules-ci-effects";
inputs = {
nixpkgs.follows = "nixpkgs";
2022-11-13 14:33:18 +01:00
flake-parts.follows = "flake-parts";
hercules-ci-agent.follows = "hercules-ci-agent";
2022-07-31 21:24:46 +02:00
};
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
2022-11-29 16:46:04 +01:00
inputs.nixpkgs-lib.follows = "nixpkgs";
2022-07-31 21:24:46 +02:00
};
2022-09-25 16:37:24 +02:00
nix-filter.url = "github:numtide/nix-filter";
2022-07-31 21:24:46 +02:00
2023-05-13 16:40:21 +02:00
repin-flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};
2022-10-16 21:59:11 +02:00
blank.url = "github:divnix/blank";
2022-12-18 14:02:19 +01:00
drv-parts = {
url = "github:DavHau/drv-parts";
inputs = {
flake-parts.follows = "flake-parts";
nixpkgs.follows = "nixpkgs";
};
};
2022-07-31 21:24:46 +02:00
};
2021-06-05 22:59:06 +02:00
}