27 lines
582 B
Nix
27 lines
582 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware
|
|
./boot
|
|
|
|
# Apps and programs
|
|
../../../modules/system
|
|
../../../modules/system/accounts
|
|
../../../modules/system/desktop
|
|
../../../modules/system/programs
|
|
../../../modules/system/services
|
|
|
|
# Devices and hardware
|
|
../../../modules/system/devices
|
|
../../../modules/system/devices/boot/systemd
|
|
../../../modules/system/devices/networking/wireless
|
|
../../../modules/system/devices/networking/firewall/pc
|
|
|
|
# Extras
|
|
../../../overlays
|
|
../../../variables
|
|
];
|
|
|
|
networking.hostName = "detritus";
|
|
}
|