From 30cfcba9e1da7cd5f20e270f7a83cf0e5d969553 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Mon, 8 Jul 2024 18:58:40 +1000 Subject: [PATCH] flake: disable formatter broken on darwin --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 81d6b42..a0e0bae 100644 --- a/flake.nix +++ b/flake.nix @@ -82,7 +82,7 @@ devShells = lib.mapAttrs' (n: lib.nameValuePair "devShell-${n}") self'.devShells; nixosConfigurations = lib.mapAttrs' (name: config: lib.nameValuePair "nixos-${name}" config.config.system.build.toplevel) ((lib.filterAttrs (_: config: config.pkgs.system == system)) self.nixosConfigurations); in - darwinConfigurations // devShells // { inherit (self') formatter; } // nixosConfigurations + darwinConfigurations // devShells // /* { inherit (self') formatter; } // */ nixosConfigurations // pkgs.lib.optionalAttrs (system == "x86_64-linux") { inherit (self'.packages) docs docs-linkcheck;