17 lines
466 B
Nix
17 lines
466 B
Nix
{ 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;
|
|
}
|