labs/tidepool
Jake Hamilton 9ae15ed2ff
Squashed commit of the following:
commit aa7b2cd4ca
Author: Jake Hamilton <jake.hamilton@hey.com>
Date:   Wed Sep 10 08:42:05 2025 -0700

    refactor: use platform specs
2025-09-11 06:17:07 -07:00
..
npins feat: add support for platform specs (#15) 2025-09-10 12:32:11 +00:00
src Squashed commit of the following: 2025-09-11 06:17:07 -07:00
default.nix refactor: do not include basic builder in new package sets 2025-09-11 06:16:26 -07:00
flake.lock chore(foundation): remove foundation from labs 2025-03-30 06:55:20 -07:00
flake.nix chore(foundation): remove foundation from labs 2025-03-30 06:55:20 -07:00
LICENSE refactor: potluck -> tidepool 2024-06-14 02:12:19 -07:00
README.md feat: working package export 2024-06-14 04:47:54 -07:00

Aux Tidepool

Aux Tidepool is an initial package set built on top of Aux Foundation. Packages are created and managed using Aux Lib's module system to allow for highly dynamic and extensible configuration.

Usage

Packages can be imported both with and without Nix Flakes. To import them using Nix Flakes, add this repository as an input.

inputs.tidepool.url = "https://git.auxolotl.org/auxolotl/labs/archive/main.tar.gz?dir=tidepool";

To import this library without using Nix Flakes, you will need to use fetchTarball and import the library entrypoint.

let
    labs = builtins.fetchTarball {
        url = "https://git.auxolotl.org/auxolotl/labs/archive/main.tar.gz";
        sha256 = "<sha256>";
    };
    tidepool = import "${labs}/tidepool" {};
in
    # ...