summaryrefslogtreecommitdiff
path: root/host
diff options
context:
space:
mode:
Diffstat (limited to 'host')
-rw-r--r--host/athena.nix7
-rw-r--r--host/software/desktop/default.nix8
2 files changed, 8 insertions, 7 deletions
diff --git a/host/athena.nix b/host/athena.nix
index 7124ebc..f32fee7 100644
--- a/host/athena.nix
+++ b/host/athena.nix
@@ -59,7 +59,11 @@
libinput = {
enable = true;
touchpad = {
- accelSpeed = "2.0";
+ accelSpeed = "4.0";
+ tapping = false;
+ tappingDragLock = false;
+ scrollMethod = "twofinger";
+ disableWhileTyping = true;
};
};
@@ -75,6 +79,7 @@
};
hardware.nvidia = {
+ open = true;
package = pkgs.linuxPackages.nvidia_x11;
prime = {
offload.enable = true;
diff --git a/host/software/desktop/default.nix b/host/software/desktop/default.nix
index d557f5a..8aac8ad 100644
--- a/host/software/desktop/default.nix
+++ b/host/software/desktop/default.nix
@@ -7,6 +7,8 @@
fileSystems."/".options = [ "noatime" "nodiratime" "discard" ];
+ hardware.graphics.enable32Bit = true;
+
services.pipewire = {
enable = true;
alsa = {
@@ -16,12 +18,6 @@
pulse.enable = true;
};
- hardware = {
- opengl= {
- driSupport32Bit = true;
- };
- };
-
services = {
journald = {
extraConfig = ''Storage=volatile'';