flake.nix: Remove checks from outputs for now

Might fix the ci running out of space.
This commit is contained in:
Donovan Glover 2024-04-29 18:18:18 -04:00
parent 23215dc732
commit 765d6df369
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -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;