depot/flake.nix

130 lines
3.5 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 = {
allow-import-from-derivation = true;
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" ];
herculesCI.ciSystems = [ "x86_64-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
inputs.dream2nix.flakeModuleBeta
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
];
2021-06-05 23:59:06 +03:00
};
2022-07-31 22:24:46 +03:00
inputs = {
2022-12-01 18:02:17 +02:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.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
};
deploy-rs = {
url = "gitlab:max/deploy-rs?host=git.privatevoid.net";
inputs = {
nixpkgs.follows = "nixpkgs";
2022-10-16 22:59:11 +03:00
flake-compat.follows = "blank";
2022-07-31 22:24:46 +03:00
utils.follows = "repin-flake-utils";
};
};
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
nar-serve = {
url = "github:numtide/nar-serve/v0.5.0";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "repin-flake-utils";
};
};
dream2nix = {
url = "github:max-privatevoid/dream2nix/reduced-strictness";
2022-07-31 22:24:46 +03:00
inputs = {
nixpkgs.follows = "nixpkgs";
2022-10-16 22:59:11 +03:00
alejandra.follows = "blank";
all-cabal-json.follows = "blank";
crane.follows = "blank";
devshell.follows = "blank";
flake-utils-pre-commit.follows = "blank";
2022-11-29 17:44:43 +02:00
flake-parts.follows = "flake-parts";
2022-10-23 22:50:08 +03:00
ghc-utils.follows = "blank";
2022-10-16 22:59:11 +03:00
gomod2nix.follows = "blank";
mach-nix.follows = "blank";
2022-11-29 17:44:43 +02:00
nix-pypi-fetcher.follows = "blank";
2022-10-16 22:59:11 +03:00
pre-commit-hooks.follows = "blank";
2022-07-31 22:24:46 +03:00
};
};
devshell = {
url = "github:numtide/devshell";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "repin-flake-utils";
};
};
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";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
2022-10-16 22:59:11 +03:00
nix-darwin.follows = "blank";
2022-07-31 22:24:46 +03:00
};
};
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";
hercules-ci-agent.follows = "hercules-ci-agent";
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
repin-flake-utils.url = "github:numtide/flake-utils";
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
}