From b3f9fe574e6ff545e4a6fe6ad5e90fc71baeece3 Mon Sep 17 00:00:00 2001 From: Jake Hamilton Date: Fri, 14 Jun 2024 04:55:15 -0700 Subject: [PATCH] refactor: enable foundation, standardize exports --- tidepool/default.nix | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/tidepool/default.nix b/tidepool/default.nix index a4bf9d4..5ada914 100644 --- a/tidepool/default.nix +++ b/tidepool/default.nix @@ -12,24 +12,13 @@ { __file__ = ./default.nix; - # options.foundation = lib.options.create { - # type = lib.types.attrs.of lib.types.derivation; - # }; + options.foundation = lib.options.create { + type = lib.types.attrs.of lib.types.derivation; + }; - # config.foundation = foundation; - # config.packages.foundation = - # builtins.mapAttrs (name: package: { - # name = package.name; - - # inherit package; - - # meta = package.meta; - # }) - # foundation; + config.foundation = foundation; } ]; }; in - result.config -# result.config.exported - + result.config.exported