Files
nix/modules/core/dendritic.nix
2026-02-18 22:44:39 -06:00

16 lines
366 B
Nix

{ inputs, ... }: {
imports = [
(inputs.flake-file.flakeModules.dendritic or {})
(inputs.den.flakeModules.dendritic or {})
];
flake-file.inputs = {
den.url = "github:vic/den";
flake-file.url = "github:vic/flake-file";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
}