16 lines
403 B
Nix
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";
|
|
};
|
|
}
|