1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 19:13:33 +02:00

Merge pull request #469 from dev-null-undefined/master

Fixed utillinux package renaming
This commit is contained in:
Jörg Thalheim 2022-09-28 11:01:40 +02:00 committed by GitHub
commit 8503c4c843
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,10 +20,10 @@
# Laptop can't correctly suspend if wlan is active # Laptop can't correctly suspend if wlan is active
powerManagement = { powerManagement = {
powerDownCommands = '' powerDownCommands = ''
${pkgs.utillinux}/bin/rfkill block wlan ${pkgs.util-linux}/bin/rfkill block wlan
''; '';
resumeCommands = '' resumeCommands = ''
${pkgs.utillinux}/bin/rfkill unblock wlan ${pkgs.util-linux}/bin/rfkill unblock wlan
''; '';
}; };
} }