nix-config/hosts/desktop/default.nix
2024-08-03 17:09:55 +02:00

15 lines
233 B
Nix

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