Initial commit

This commit is contained in:
2026-02-28 14:18:57 +01:00
commit 8110e8f10b
45 changed files with 6381 additions and 0 deletions

15
modules/dendritic.nix Normal file
View File

@@ -0,0 +1,15 @@
{ inputs, ... }:
{
imports = [
(inputs.flake-file.flakeModules.dendritic or { })
(inputs.den.flakeModules.dendritic or { })
(inputs.den.namespace "lux" true)
];
# other inputs may be defined at a module using them.
flake-file.inputs = {
den.url = "github:vic/den";
flake-file.url = "github:vic/flake-file";
home-manager.url = "github:nix-community/home-manager";
};
}