nix-config/hosts/desktop/default.nix
2024-09-20 23:18:44 +02:00

15 lines
227 B
Nix

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