diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-12 15:32:40 -0400 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-12 15:32:40 -0400 | 
| commit | 35d5aa9415fbd8b3ef706292077ec7bc75cc8734 (patch) | |
| tree | 134d8ea011180b60c6e6765c1eb75c9f770b634b | |
| parent | a91e28831c336448e19e52ba06c5141b8ad31020 (diff) | |
bring config up to date
Diffstat (limited to '')
| -rw-r--r-- | modules/amdgpu.nix | 5 | ||||
| -rw-r--r-- | modules/remapcapslock.nix | 9 | ||||
| -rw-r--r-- | modules/virtualization.nix | 2 | 
3 files changed, 8 insertions, 8 deletions
| diff --git a/modules/amdgpu.nix b/modules/amdgpu.nix index 430faf3..e3f053a 100644 --- a/modules/amdgpu.nix +++ b/modules/amdgpu.nix @@ -4,15 +4,10 @@    hardware.graphics.enable = true;    hardware.graphics.extraPackages = with pkgs; [      rocmPackages.clr.icd -    amdvlk      vaapiVdpau      libvdpau-va-gl    ]; -  hardware.graphics.extraPackages32 = with pkgs; [ -    driversi686Linux.amdvlk -  ]; -    services.xserver.videoDrivers = [ "modesetting" ];    systemd.tmpfiles.rules = [ diff --git a/modules/remapcapslock.nix b/modules/remapcapslock.nix index f5daca8..d2ee8ee 100644 --- a/modules/remapcapslock.nix +++ b/modules/remapcapslock.nix @@ -4,7 +4,14 @@    services.interception-tools =      let        itools = pkgs.interception-tools; -      itools-caps = pkgs.interception-tools-plugins.caps2esc; +      itools-caps = (pkgs.interception-tools-plugins.caps2esc.overrideAttrs (old: { +          patches = [ +            (pkgs.fetchpatch { +              url = "https://gitlab.com/interception/linux/plugins/caps2esc/-/commit/47ea8022df47b23d5d9603f9fe71b3715e954e4c.patch"; +              sha256 = "sha256-lB+pDwmFWW1fpjOPC6GLpxvrs87crDCNk1s9KnfrDD4="; +            }) +          ]; +      }));      in      {        enable = true; diff --git a/modules/virtualization.nix b/modules/virtualization.nix index d51a3a9..6d431b6 100644 --- a/modules/virtualization.nix +++ b/modules/virtualization.nix @@ -12,8 +12,6 @@ in        enable = true;        qemu = {          swtpm.enable = true; -        ovmf.enable = true; -        ovmf.packages = [ pkgs.OVMFFull.fd ];        };      };      spiceUSBRedirection.enable = true; | 
