about summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--users/tazjin/nixos/modules/desktop.nix1
-rw-r--r--users/tazjin/nixos/tverskoy/default.nix4
2 files changed, 5 insertions, 0 deletions
diff --git a/users/tazjin/nixos/modules/desktop.nix b/users/tazjin/nixos/modules/desktop.nix
index c78463386c46..aa4a7fd7bc71 100644
--- a/users/tazjin/nixos/modules/desktop.nix
+++ b/users/tazjin/nixos/modules/desktop.nix
@@ -6,6 +6,7 @@
     pipewire = {
       enable = true;
       alsa.enable = true;
+      alsa.support32Bit = true;
       pulse.enable = true;
     };
 
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix
index 513f65966fce..53b189565005 100644
--- a/users/tazjin/nixos/tverskoy/default.nix
+++ b/users/tazjin/nixos/tverskoy/default.nix
@@ -97,6 +97,8 @@ lib.fix (self: {
 
     opengl = {
       enable = true;
+      driSupport32Bit = true;
+
       extraPackages = with pkgs; [
         vaapiVdpau
         libvdpau-va-gl
@@ -166,5 +168,7 @@ lib.fix (self: {
   # as I do anything stressful to the machine
   systemd.services.systemd-oomd.enable = lib.mkForce false;
 
+  environment.systemPackages = [ pkgs.vulkan-tools ];
+
   system.stateVersion = "20.09";
 })