diff options
author | Franck Cuny <franck@fcuny.net> | 2023-12-09 09:15:23 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-12-09 09:15:23 -0800 |
commit | 543fcc38c9c48349d6988b1ace119f0cef2d6efa (patch) | |
tree | ae8174b09797fd19e365f60bf25a9d20b222c855 /profiles/hardware/xps9300.nix | |
parent | install kind / configure the dock (diff) | |
download | world-543fcc38c9c48349d6988b1ace119f0cef2d6efa.tar.gz |
delete even more unused configurations
Diffstat (limited to 'profiles/hardware/xps9300.nix')
-rw-r--r-- | profiles/hardware/xps9300.nix | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/profiles/hardware/xps9300.nix b/profiles/hardware/xps9300.nix deleted file mode 100644 index 72a8b5e..0000000 --- a/profiles/hardware/xps9300.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ config, pkgs, ... }: -{ - imports = [ - ./intel.nix - ]; - - boot.kernelParams = [ - "mem_sleep_default=deep" - ]; - - # Touchpad goes over i2c, and the psmouse module interferes with it - boot.blacklistedKernelModules = [ "psmouse" ]; - - # Includes the Wi-Fi and Bluetooth firmware for the QCA6390. - hardware.enableRedistributableFirmware = true; - - networking.wireless.iwd.enable = true; - hardware.bluetooth.enable = true; - services.blueman.enable = true; - - boot.initrd.kernelModules = [ "i915" "acpi_call" ]; - - environment.variables = { - VDPAU_DRIVER = "va_gl"; - }; - - hardware.opengl.extraPackages = with pkgs; [ - vaapiIntel - libvdpau-va-gl - intel-media-driver - ]; - - boot = { - extraModulePackages = with config.boot.kernelPackages; [ acpi_call ]; - }; -} |