25 lines
627 B
Nix
25 lines
627 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware
|
||
|
|
||
|
# Apps and programs
|
||
|
../../../modules/system
|
||
|
../../../modules/system/accounts
|
||
|
../../../modules/system/devices/filesystems
|
||
|
../../../modules/system/devices/boot/systemd
|
||
|
../../../modules/system/devices/networking
|
||
|
../../../modules/system/devices/networking/firewall/pc
|
||
|
#../../../modules/system/devices/networking/wireguard/pc
|
||
|
../../../modules/system/programs/git
|
||
|
../../../modules/system/programs/security
|
||
|
../../../modules/system/services/common
|
||
|
|
||
|
# Misc
|
||
|
../../../overlays
|
||
|
../../../variables
|
||
|
];
|
||
|
|
||
|
networking.hostName = "bomberman";
|
||
|
}
|