From 855430ef16eb0340facb632075ff898831d3ae8d Mon Sep 17 00:00:00 2001 From: _cry64 Date: Sun, 15 Mar 2026 01:13:50 +1000 Subject: [PATCH] fix snow/default.nix not updated (use snow/lib) --- nix/snow/default.nix | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/nix/snow/default.nix b/nix/snow/default.nix index c90685e..5f95f46 100644 --- a/nix/snow/default.nix +++ b/nix/snow/default.nix @@ -11,23 +11,12 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -{ - nt, - mix, - ... -} @ args: let - inherit (nt) findImport; -in - mix.newMixture args (mixture: { - includes = { - private = [ - ./lib/nodes.nix - ]; - public = [ - ./flake - ./lib.nix - ]; - }; - - inherit findImport; - }) +{mix, ...} @ args: +mix.newMixture args (mixture: { + includes = { + public = [ + ./flake + ./lib + ]; + }; +})