NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(stellapent-cier): prep Broadcom configs for Bluetooth + WiFi drivers

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+18 -2
-1
flake.nix
··· 101 101 system = "x86_64-linux"; 102 102 modules = [ 103 103 ./hosts/stellapent-cier/configuration.nix 104 - ./hosts/stellapent-cier/hardware-configuration.nix 105 104 106 105 # load Determinate Nix and the rest 107 106 determinate.nixosModules.default
+14
hosts/stellapent-cier/broadcom.nix
··· 1 + { self, config, pkgs, lib, ... }: 2 + 3 + { 4 + # load broadcom wireless driver 5 + boot.kernelModules = [ "wl" ]; 6 + boot.extraModulePackages = with config.boot.kernelPackages; [ broadcom_sta ]; 7 + 8 + # blacklist similar modules to avoid collision 9 + boot.blacklistedKernelModules = [ "b43" "bcma" ]; 10 + 11 + environment.systemPackages = with pkgs; [ 12 + broadcom-bt-firmware 13 + ]; 14 + }
+3
hosts/stellapent-cier/configuration.nix
··· 24 24 { 25 25 imports = 26 26 [ 27 + ./hardware-configuration.nix 28 + ./broadcom.nix 27 29 ../../shared/meta.nix 28 30 ../../shared/desktop/base.nix 29 31 ../../shared/desktop/kde-plasma.nix ··· 133 135 134 136 system.nixos.tags = [ "laptop" "homelab" ]; 135 137 } 138 +
+1 -1
shared/hosts-file.nix
··· 55 55 "paste.fawn-cod.ts.net" 56 56 ]; 57 57 }; 58 - } 58 + }