From 31c66637495479f76cd2563af0815163c7cf200c Mon Sep 17 00:00:00 2001 From: Squibid Date: Thu, 4 Dec 2025 01:48:19 -0500 Subject: [PATCH] it seems to really want this --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index d34f506..5a51fc4 100644 --- a/flake.nix +++ b/flake.nix @@ -9,8 +9,8 @@ environment.systemPackages = [ inputs.fooud.overlays.default.fooud ]; }; }; - overlays.default = [ - (final: prev: { + overlays.default = { + fooud = final: prev: { fooud = prev.stdenv.mkDerivation rec { pname = "fooud"; version = "1.0"; @@ -20,7 +20,7 @@ nativeBuildInputs = [ nixpkgs.zig.hook ]; zigBuildFlags = [ "--system" "${deps}" ]; }; - }) - ]; + }; + }; }; }