summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix32
1 files changed, 3 insertions, 29 deletions
diff --git a/flake.nix b/flake.nix
index f4329fd..23ad382 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,40 +2,17 @@
description = "getchoo's nix expressions";
nixConfig = {
- extra-substituters = [
- "https://getchoo.cachix.org"
- "https://cache.garnix.io"
- ];
- extra-trusted-public-keys = [
- "getchoo.cachix.org-1:ftdbAUJVNaFonM0obRGgR5+nUmdLMM+AOvDOSx0z5tE="
- "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
- ];
+ extra-substituters = ["https://cache.garnix.io"];
+ extra-trusted-public-keys = ["cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="];
};
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
- flake-compat = {
- url = "github:edolstra/flake-compat";
- flake = false;
- };
-
- effects = {
- url = "github:hercules-ci/hercules-ci-effects";
- inputs.nixpkgs.follows = "nixpkgs";
- inputs.hercules-ci-agent.follows = "hercules-ci-agent";
- };
-
parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
-
- hercules-ci-agent = {
- url = "github:hercules-ci/hercules-ci-agent";
- inputs.nixpkgs.follows = "nixpkgs";
- inputs.flake-parts.follows = "parts";
- };
};
outputs = {parts, ...} @ inputs:
@@ -44,7 +21,6 @@
./pkgs
./modules
./templates
- ./hci.nix
];
systems = [
@@ -54,8 +30,6 @@
"aarch64-darwin"
];
- perSystem = {pkgs, ...}: {
- formatter = pkgs.alejandra;
- };
+ perSystem = {pkgs, ...}: {formatter = pkgs.alejandra;};
};
}