dotfiles/hosts/oren/configuration.nix
RingOfStorms (Joshua Bell) 671cd3a00b update oren to use kde plasma
2025-12-07 18:59:13 -06:00

26 lines
452 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"
];
}