chore: initial commit

This commit is contained in:
technofab 2025-07-15 19:28:42 +02:00
commit 7602719790
No known key found for this signature in database
24 changed files with 1916 additions and 0 deletions

20
lib/default.nix Normal file
View file

@ -0,0 +1,20 @@
{
pkgs,
lib ? pkgs.lib,
...
}: let
inherit (lib) evalModules;
in rec {
module = ./module.nix;
mkNixible = config:
evalModules {
specialArgs = {inherit pkgs;};
modules = [
module
config
];
};
mkNixibleCli = config: (mkNixible config).config.cli;
}