nix-config/hosts/desktop/default.nix
2024-10-19 23:57:32 +02:00

15 lines
248 B
Nix

{ hostname, ... }:
{
networking.hostName = hostname;
imports = [
./boot.nix
./nfs-client.nix
./nix-ld.nix
./printers.nix
./syncthing.nix
];
hardware.bluetooth.enable = true;
services.hardware.bolt.enable = true;
}