diff --git a/modules/home/wayland/hyprland/config.nix b/modules/home/wayland/hyprland/config.nix index eefb673..cc64703 100755 --- a/modules/home/wayland/hyprland/config.nix +++ b/modules/home/wayland/hyprland/config.nix @@ -14,7 +14,7 @@ follow_mouse = 1 - sensitivity = 0 # -0.5 # -1.0 - 1.0, 0 means no modification. + sensitivity = 0 touchpad { natural_scroll=no diff --git a/modules/nixos/system/hw/default.nix b/modules/nixos/system/hw/default.nix index c149db9..e3954a6 100644 --- a/modules/nixos/system/hw/default.nix +++ b/modules/nixos/system/hw/default.nix @@ -1 +1 @@ -{ ... }: { imports = [ ./base ./boot ./fs ./opengl ./power ./udev ./virt ]; } +{ ... }: { imports = [ ./base ./boot ./fs ./graphics ./power ./udev ./virt ]; } diff --git a/modules/nixos/system/hw/graphics/default.nix b/modules/nixos/system/hw/graphics/default.nix new file mode 100644 index 0000000..2cfc1d0 --- /dev/null +++ b/modules/nixos/system/hw/graphics/default.nix @@ -0,0 +1,4 @@ +{ ... }: { + hardware.graphics.enable = true; + hardware.graphics.enable32Bit = true; +} diff --git a/modules/nixos/system/hw/opengl/default.nix b/modules/nixos/system/hw/opengl/default.nix deleted file mode 100644 index a94a19a..0000000 --- a/modules/nixos/system/hw/opengl/default.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ ... }: { - hardware.opengl.enable = true; - hardware.opengl.driSupport = true; - hardware.opengl.driSupport32Bit = true; -}