dotfiles/nix/system/essentials.nix
2024-07-31 07:17:52 +02:00

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;
}