20 lines
456 B
Nix
20 lines
456 B
Nix
{ config, pkgs, lib, user, inputs, flakeRoot,... }:
|
|
{
|
|
imports = [
|
|
./audio/top.nix
|
|
./backups/top.nix
|
|
./bluetooth/top.nix
|
|
./disk_management/top.nix
|
|
./hardware_sensors/top.nix
|
|
./logging_monitoring/top.nix
|
|
./login_manager/top.nix
|
|
./monitor_setup/top.nix
|
|
./networking/top.nix
|
|
./power_management/top.nix
|
|
./printers_scanners/top.nix
|
|
./security/top.nix
|
|
./system_updates/top.nix
|
|
];
|
|
# .. put any code here
|
|
}
|