15 lines
244 B
Nix
Executable file
15 lines
244 B
Nix
Executable file
{ pkgs, config, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
busybox
|
|
doas
|
|
blueman
|
|
# for monitoring cpu and other temps
|
|
lm_sensors
|
|
];
|
|
|
|
hardware.bluetooth.enable = true;
|
|
hardware.bluetooth.powerOnBoot = true;
|
|
|
|
}
|