cerulean/nix/snow/flake/modules/packages.nix

30 lines
552 B
Nix
Raw Normal View History

2026-03-14 22:18:28 +10:00
{
lib,
snow,
...
}: let
inherit
(lib)
mkOption
types
;
2026-03-14 22:18:28 +10:00
inherit
2026-03-17 20:37:59 +10:00
(snow.lib)
2026-03-14 22:18:28 +10:00
mkPerSystemFlakeOutput
;
in
2026-03-14 22:18:28 +10:00
mkPerSystemFlakeOutput {
name = "packages";
option = mkOption {
type = types.lazyAttrsOf types.package;
default = {};
description = ''
An attribute set of packages to be built by [`nix build`](https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-build.html).
2026-03-14 22:18:28 +10:00
`nix build .#<name>` will build `packages.<name>`.
'';
};
file = ./packages.nix;
}