dotfiles/hosts/oren/configuration.nix
2025-10-22 00:12:27 -05:00

28 lines
483 B
Nix

{
pkgs,
lib,
config,
...
}:
{
environment.systemPackages = with pkgs; [
# [Laptop] Battery status
acpi
bluez # bluetoothctl command
];
hardware.enableAllFirmware = true;
hardware.bluetooth.enable = true;
networking.networkmanager.enable = true;
environment.shellAliases = {
wifi = "nmtui";
battery = "acpi";
};
boot.kernelModules = [
"rtl8192ce"
"rtl8192c_common"
"rtlwifi"
"mac80211"
];
services.tlp.enable = true;
}