From 35a8fc88b1ebab431f99aa83d09a178ab0284798 Mon Sep 17 00:00:00 2001 From: Sam <30577766+Samasaur1@users.noreply.github.com> Date: Wed, 28 Jan 2026 00:21:37 -0700 Subject: [PATCH] Revert "remove duplicates from brewfile" --- modules/homebrew.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/homebrew.nix b/modules/homebrew.nix index 776ba850..c78d41fe 100644 --- a/modules/homebrew.nix +++ b/modules/homebrew.nix @@ -12,7 +12,7 @@ let mkBrewfileSectionString = heading: entries: optionalString (entries != [ ]) '' # ${heading} - ${concatStringsSep "\n" (unique (map (v: v.brewfileLine or v) entries))} + ${concatMapStringsSep "\n" (v: v.brewfileLine or v) entries} '';