dotfiles/etc/system/essentials.nix
2024-05-18 01:10:04 +02:00

18 lines
332 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; # enables support for Bluetooth
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
}