From a2c4a6d0aa28e9aacf38478ff5c89b5b4ee1e5c7 Mon Sep 17 00:00:00 2001 From: chiroptical Date: Thu, 9 Jan 2025 19:35:12 -0500 Subject: [PATCH] Fix the flake, whoops --- flake.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index c0197d5..76fca72 100644 --- a/flake.nix +++ b/flake.nix @@ -18,9 +18,8 @@ system: function nixpkgs.legacyPackages.${system} ); in { - devShell = forAllSystems ( - pkgs: - default = pkgs.callPackage ./shell.nix { }; - ); + devShells = forAllSystems (pkgs: { + default = pkgs.callPackage ./shell.nix {}; + }); }; }