14 lines
227 B
Nix
14 lines
227 B
Nix
{ hostname, ... }:
|
|
{
|
|
networking.hostName = hostname;
|
|
imports = [
|
|
./nix-ld.nix
|
|
./boot.nix
|
|
./printers.nix
|
|
./syncthing.nix
|
|
];
|
|
|
|
hardware.bluetooth.enable = true;
|
|
services.hardware.bolt.enable = true;
|
|
|
|
}
|