disable redundant features

This commit is contained in:
k3t
2026-09-03 08:28:03 +00:00
parent 1eb528fdc7
commit a00258ed3d
2 changed files with 12 additions and 12 deletions
+11 -11
View File
@@ -4,12 +4,12 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
let #let
amdgpu-kernel-module = pkgs.callPackage ./amdgpu-kernel-module.nix { # amdgpu-kernel-module = pkgs.callPackage ./amdgpu-kernel-module.nix {
# Make sure the module targets the same kernel as your system is using. # Make sure the module targets the same kernel as your system is using.
kernel = config.boot.kernelPackages.kernel; # kernel = config.boot.kernelPackages.kernel;
}; # };
in #in
{ {
imports = imports =
@@ -20,14 +20,14 @@ in
networking.hostName = "TheBlackBox"; networking.hostName = "TheBlackBox";
# Linux and VR... nightmare below # Linux and VR... nightmare below
boot.extraModulePackages = [ #boot.extraModulePackages = [
(amdgpu-kernel-module.overrideAttrs (_: { # (amdgpu-kernel-module.overrideAttrs (_: {
patches = [ ./amdgpu-cap_sys_nice_begone.patch ]; # patches = [ ./amdgpu-cap_sys_nice_begone.patch ];
})) # }))
]; #];
# Synergy # Synergy
services.synergy.server.enable = true; #services.synergy.server.enable = true;
services.wivrn = { services.wivrn = {
enable = true; enable = true;
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
services.synergy = { services.synergy = {
client = { client = {
enable = true; #enable = true;
serverAddress = "theblackbox"; serverAddress = "theblackbox";
}; };
#server.enable = true; #server.enable = true;