dotfiles/etc/system/essentials.nix

18 lines
332 B
Nix
Raw Normal View History

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
];
hardware.bluetooth.enable = true; # enables support for Bluetooth
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
2024-05-18 01:10:04 +02:00
2024-04-28 11:35:35 +02:00
}