Update FredOS-Macbook.nix

This commit is contained in:
ediblerope 2025-12-19 11:34:34 +00:00 committed by GitHub
parent bead85e23b
commit 5dc8be34ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,8 +4,11 @@
config = lib.mkIf (config.networking.hostName == "FredOS-Macbook") { config = lib.mkIf (config.networking.hostName == "FredOS-Macbook") {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# Package names here # Package names here
tlp
]; ];
# Enable tlp service
services.tlp.enable = true;
# Bootloader # Bootloader
boot = { boot = {
@ -28,7 +31,7 @@
# Put nixpkgs config INSIDE the mkIf # Put nixpkgs config INSIDE the mkIf
nixpkgs.config.permittedInsecurePackages = [ nixpkgs.config.permittedInsecurePackages = [
"broadcom-sta-6.30.223.271-59-6.18.1" pkgs.lib.getName config.boot.kernelPackages.broadcom_sta
]; ];
}; };
} }