dotfiles/nix/system/essentials.nix

15 lines
244 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;
hardware.bluetooth.powerOnBoot = true;
2024-05-18 01:10:04 +02:00
2024-04-28 11:35:35 +02:00
}