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
|
2023-02-24 15:53:20 +01:00
|
|
|
inputs.drv-parts.modules.flake-parts.drv-parts
|
2023-02-24 15:16:15 +01:00
|
|
|
./hosts/part.nix
|
2023-01-31 22:59:53 +01:00
|
|
|
./modules/part.nix
|
2022-07-31 15:09:40 +02:00
|
|
|
./packages/part.nix
|
2023-03-23 18:20:34 +01:00
|
|
|
./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
|
2024-07-05 22:48:39 +02:00
|
|
|
./catalog/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";
|
|
|
|
|
2024-06-04 13:29:58 +02:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-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-regression.follows = "blank";
|
|
|
|
};
|
2022-07-31 21:24:46 +02:00
|
|
|
};
|
|
|
|
|
2024-05-14 17:46:29 +02:00
|
|
|
hyprspace = {
|
2024-06-01 21:12:06 +02:00
|
|
|
url = "github:hyprspace/hyprspace";
|
2024-05-14 17:46:29 +02:00
|
|
|
inputs = {
|
|
|
|
flake-parts.follows = "flake-parts";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-07-31 21:24:46 +02:00
|
|
|
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 = {
|
2024-06-04 18:20:55 +02:00
|
|
|
url = "github:numtide/nar-serve";
|
2022-07-31 21:24:46 +02:00
|
|
|
inputs = {
|
|
|
|
nixpkgs.follows = "nixpkgs";
|
|
|
|
flake-utils.follows = "repin-flake-utils";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
devshell = {
|
|
|
|
url = "github:numtide/devshell";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.follows = "nixpkgs";
|
2024-02-09 13:08:02 +01:00
|
|
|
flake-utils.follows = "repin-flake-utils";
|
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 = {
|
2023-10-29 15:45:30 +01:00
|
|
|
url = "github:hercules-ci/hercules-ci-agent";
|
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";
|
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
|
|
|
}
|