labs/tidepool/src/packages/default.nix

28 lines
518 B
Nix
Raw Normal View History

{
lib,
config,
}: let
lib' = config.lib;
2024-06-13 10:22:57 -07:00
doubles = lib'.systems.doubles.all;
in {
includes = [
2024-06-14 04:47:54 -07:00
./aux/foundation.nix
];
options = {
packages = lib.options.create {
description = "The package set.";
type = lib'.types.packages;
};
preferences.packages = {
version = lib.options.create {
description = "The preferred package version when using aliases.";
type = lib.types.enum ["latest" "stable"];
default.value = "latest";
};
2024-06-14 01:26:16 -07:00
};
2024-06-13 10:22:57 -07:00
};
}