nix-config/hosts/desktop/default.nix

14 lines
213 B
Nix
Raw Normal View History

2024-07-06 21:33:59 +02:00
{ pkgs, hostname, ... }:
{
networking.hostName = hostname;
imports = [
./nix-ld.nix
./boot.nix
./printers.nix
];
hardware.bluetooth.enable = true;
services.hardware.bolt.enable = true;
2024-07-28 10:16:48 +02:00
}