diff options
author | tzlil <tzlils@protonmail.com> | 2023-03-12 13:18:26 +0200 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-03-12 13:18:26 +0200 |
commit | f93138d51e2350e9e582bf08f8883229a74539be (patch) | |
tree | f742b7118c057cf105ff589f57c67462df659388 /hosts/laptop | |
parent | 321fd58925e86f6e8d8b3d311101cc3cef57b9ee (diff) |
trying to get wifi working
Diffstat (limited to 'hosts/laptop')
-rw-r--r-- | hosts/laptop/cfg.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/laptop/cfg.nix b/hosts/laptop/cfg.nix index 65115ab..2f9ec01 100644 --- a/hosts/laptop/cfg.nix +++ b/hosts/laptop/cfg.nix @@ -32,7 +32,7 @@ }; kernelModules = ["kvm-intel"]; kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; - extraModulePackages = [ pkgs.linuxPackages_latest.rtw88-firmware ]; + # extraModulePackages = [ pkgs.linuxPackages_latest.rtw88-firmware ]; kernelParams = [ "console=ttyS0" "init_on_free=1" @@ -53,6 +53,8 @@ }; }; + hardware.firmware = [ pkgs.rtw88-firmware ]; + time.timeZone = lib.mkDefault "Israel"; fileSystems."/" = { |