14 lines
226 B
Nix
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
|
|
];
|
|
}
|