nix-config/hosts/desktop/default.nix
2024-12-08 00:51:23 +01:00

16 lines
273 B
Nix

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