initial commit

This commit is contained in:
John Lancaster
2026-02-16 09:14:16 -06:00
commit c62545221c
16 changed files with 702 additions and 0 deletions

16
modules/default.nix Normal file
View File

@@ -0,0 +1,16 @@
{ inputs, ... }:
{
imports = [
inputs.flake-file.flakeModules.dendritic
# inputs.flake-parts.flakeModules.modules
];
flake-file.description = "A dendritic setup.";
# flake-file.inputs = {
# flake-file.url = "github:vic/flake-file";
# flake-parts.url = "github:hercules-ci/flake-parts";
# nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
# systems.url = "github:nix-systems/default";
# };
systems = import inputs.systems;
}