nix-config/hosts/desktop/default.nix
2024-11-17 21:21:46 +01:00

15 lines
249 B
Nix

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