blob: d4cb8826642c15da61456c57d0f0b12d737990b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{
description = "Additional flake utils for convenience.";
outputs = { self }: {
lib = {
shell = import ./lib/shell.nix self;
mkDevShell = import ./lib/mk-dev-shell.nix self;
mkSandboxSystem = import ./lib/mk-sandbox-system.nix self;
};
};
}
|