nix-config/hosts/desktop/default.nix
2024-07-28 16:10:57 +02:00

14 lines
213 B
Nix

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