Files
lux-old/modules/dendritic.nix
2026-02-28 14:18:57 +01:00

16 lines
403 B
Nix

{ 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";
};
}