2024-04-28 11:35:35 +02:00
|
|
|
{ pkgs, config, ... }:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
busybox
|
|
|
|
doas
|
|
|
|
blueman
|
|
|
|
# for monitoring cpu and other temps
|
|
|
|
lm_sensors
|
|
|
|
];
|
|
|
|
|
2024-06-11 20:09:58 +02:00
|
|
|
hardware.bluetooth.enable = true;
|
|
|
|
hardware.bluetooth.powerOnBoot = true;
|
2024-05-18 01:10:04 +02:00
|
|
|
|
2024-04-28 11:35:35 +02:00
|
|
|
}
|