flake.nix: Add back outputs for checks

Should pass in the ci this time.
This commit is contained in:
Donovan Glover 2024-05-12 22:00:37 -04:00
parent 240cf74584
commit ac327da932
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" ];
flakeDirectories = [ "overlays" "modules" "hardware" "home" "packages" ];
flakeOutputs = [ "overlays" "nixosModules" "nixosConfigurations" "homeManagerModules" "packages" "checks" ];
flakeDirectories = [ "overlays" "modules" "hardware" "home" "packages" "tests" ];
in
{
formatter.x86_64-linux = nixpkgs-fmt;