From 765d6df3698d8acc6b6df34de49809cbfa18e9db Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 29 Apr 2024 18:18:18 -0400 Subject: [PATCH] flake.nix: Remove checks from outputs for now Might fix the ci running out of space. --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 2658f95e..f213a64d 100644 --- a/flake.nix +++ b/flake.nix @@ -27,8 +27,8 @@ inherit (nixpkgs.legacyPackages.x86_64-linux) nixpkgs-fmt callPackage; inherit (builtins) attrNames listToAttrs map replaceStrings readDir; - flakeOutputs = [ "overlays" "nixosModules" "nixosConfigurations" "homeManagerModules" "packages" "checks" ]; - flakeDirectories = [ "overlays" "modules" "hardware" "home" "packages" "tests" ]; + flakeOutputs = [ "overlays" "nixosModules" "nixosConfigurations" "homeManagerModules" "packages" ]; + flakeDirectories = [ "overlays" "modules" "hardware" "home" "packages" ]; in { formatter.x86_64-linux = nixpkgs-fmt;