chore: initial commit

This commit is contained in:
technofab 2025-07-31 12:37:19 +02:00
commit fbacfc149b
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ
21 changed files with 748 additions and 0 deletions

19
lib/default.nix Normal file
View file

@ -0,0 +1,19 @@
{
pkgs,
lib ? pkgs.lib,
...
}: rec {
modules = import ./modules;
eval = {config, ...}: let
res = lib.evalModules {
modules = [config modules];
specialArgs = {
inherit pkgs;
};
};
in {
inherit (res) config options;
shell = res.config.shell.finalPackage;
};
mkShell = config: (eval {inherit config;}).shell;
}