nix-config/hosts/desktop/default.nix

15 lines
227 B
Nix
Raw Normal View History

2024-09-19 17:12:09 +02:00
{ hostname, ... }:
2024-07-06 21:33:59 +02:00
{
networking.hostName = hostname;
imports = [
./nix-ld.nix
./boot.nix
./printers.nix
2024-08-03 15:36:08 +02:00
./syncthing.nix
2024-07-06 21:33:59 +02:00
];
hardware.bluetooth.enable = true;
services.hardware.bolt.enable = true;
2024-07-28 10:16:48 +02:00
}