quintessence/modules/index.nix
2026-02-12 15:00:24 -08:00

14 lines
226 B
Nix

## Indexes all the other modules
{ inputs, config, pkgs, ... }:
{
imports =
[
./boot.nix
./packages.nix
./services.nix
./net.nix
./vars.nix
./unstable.nix
./machine.nix
];
}