Initial dendritic rewrite

This commit is contained in:
2026-04-04 16:46:30 -04:00
parent 06a8e77924
commit f080e311d1
131 changed files with 3342 additions and 3148 deletions

26
modules/parts.nix Normal file
View File

@@ -0,0 +1,26 @@
{
inputs,
lib,
...
}:
{
imports = [
inputs.flake-parts.flakeModules.modules
];
config = {
# Have to nest `systems` in `config` otherwise flake-parts gets mad for some reason
systems = [
"aarch64-darwin"
"aarch64-linux"
"x86_64-darwin"
"x86_64-linux"
];
};
# Enables the *Factory Aspect*
options.flake.factory = lib.mkOption {
type = lib.types.attrsOf lib.types.unspecified;
default = { };
};
}