fmt
This commit is contained in:
parent
b9b85657db
commit
8ee461d1de
9 changed files with 21 additions and 28 deletions
|
@ -3,15 +3,18 @@
|
|||
boot.kernelPatches = [
|
||||
{
|
||||
name = "bt-usb-fixes-1";
|
||||
patch = ./kernel/patches/1-3-Bluetooth-btusb-Fix-Chinese-CSR-dongles-again-by-re-adding-ERR_DATA_REPORTING-quirk.diff;
|
||||
patch =
|
||||
./kernel/patches/1-3-Bluetooth-btusb-Fix-Chinese-CSR-dongles-again-by-re-adding-ERR_DATA_REPORTING-quirk.diff;
|
||||
}
|
||||
{
|
||||
name = "bt-usb-fixes-2";
|
||||
patch = ./kernel/patches/2-3-Bluetooth-btusb-Add-a-setup-message-for-CSR-dongles-showing-the-Read-Local-Information-values.diff;
|
||||
patch =
|
||||
./kernel/patches/2-3-Bluetooth-btusb-Add-a-setup-message-for-CSR-dongles-showing-the-Read-Local-Information-values.diff;
|
||||
}
|
||||
{
|
||||
name = "bt-usb-fixes-3";
|
||||
patch = ./kernel/patches/3-3-Bluetooth-btusb-Add-a-parameter-to-let-users-disable-the-fake-CSR-force-suspend-hack.diff;
|
||||
patch =
|
||||
./kernel/patches/3-3-Bluetooth-btusb-Add-a-parameter-to-let-users-disable-the-fake-CSR-force-suspend-hack.diff;
|
||||
}
|
||||
{
|
||||
name = "bt-usb-fixes-4";
|
||||
|
|
|
@ -2,11 +2,7 @@
|
|||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
{ config, pkgs, inputs, ... }: {
|
||||
imports = [
|
||||
./gamemode.nix
|
||||
./cachix.nix
|
||||
./media-packages.nix
|
||||
];
|
||||
imports = [ ./gamemode.nix ./cachix.nix ./media-packages.nix ];
|
||||
packages.media-packages.enable = true;
|
||||
|
||||
# Bootloader.
|
||||
|
@ -81,9 +77,7 @@
|
|||
# Discoverable = true;
|
||||
AlwaysPairable = true;
|
||||
};
|
||||
Policy = {
|
||||
AutoEnable = true;
|
||||
};
|
||||
Policy = { AutoEnable = true; };
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -2,9 +2,7 @@
|
|||
programs.gamemode.enable = true;
|
||||
programs.gamemode.enableRenice = true;
|
||||
programs.gamemode.settings = {
|
||||
general = {
|
||||
renice = 10;
|
||||
};
|
||||
general = { renice = 10; };
|
||||
|
||||
# Warning: GPU optimisations have the potential to damage hardware
|
||||
gpu = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue