depot/flake.nix

124 lines
3.1 KiB
Nix
Raw Normal View History

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