1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 19:13:33 +02:00
nixos-hardware/msi/gs60/default.nix
2022-12-31 11:57:44 +01:00

30 lines
570 B
Nix

{ pkgs, ... }:
{
imports = [
../../common/cpu/intel
../../common/pc/laptop
];
boot = {
# Interferes with Fn- action keys
kernelParams = [ "video.report_key_events=0" ];
# Workaround for problematic firmware loading
extraModprobeConfig = ''
options ath10k_core skip_otp=y
'';
};
# Laptop can't correctly suspend if wlan is active
powerManagement = {
powerDownCommands = ''
${pkgs.util-linux}/bin/rfkill block wlan
'';
resumeCommands = ''
${pkgs.util-linux}/bin/rfkill unblock wlan
'';
};
}