aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2025-07-30 22:27:27 +0200
committerAdrian Kummerlaender2025-07-30 22:27:27 +0200
commit835e110fa2ab7fd186f34cd387642e67b4235bdf (patch)
tree8f937d47a1714fcfd49820ae6414247f0b2ed29d
parent8dd66b24529bee690b54ad2faf9210467d96a242 (diff)
downloadnixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar
nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar.gz
nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar.bz2
nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar.lz
nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar.xz
nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.tar.zst
nixos_home-835e110fa2ab7fd186f34cd387642e67b4235bdf.zip
athena: Switch to wayland
-rw-r--r--gui/conf/niri.kdl6
-rw-r--r--host/athena.nix12
2 files changed, 9 insertions, 9 deletions
diff --git a/gui/conf/niri.kdl b/gui/conf/niri.kdl
index 7499ab6..89d08bd 100644
--- a/gui/conf/niri.kdl
+++ b/gui/conf/niri.kdl
@@ -27,14 +27,10 @@ input {
// disabled-on-external-mouse
}
- mouse {
- // off
- }
-
trackpoint {
// off
// natural-scroll
- // accel-speed 0.2
+ accel-speed 1.0
// accel-profile "flat"
// scroll-method "on-button-down"
// scroll-button 273
diff --git a/host/athena.nix b/host/athena.nix
index b5e9b75..556893e 100644
--- a/host/athena.nix
+++ b/host/athena.nix
@@ -3,16 +3,20 @@
{
imports = [
../gui/default.nix
- ../gui/xmonad.nix
+ ../gui/niri.nix
../gui/networkmanager.nix
- ../gui/stalonetray.nix
- ../gui/redshift.nix
];
home.packages = with pkgs; [
acpi
brightnessctl
- arandr
blueman
+ xwayland-satellite
];
+
+ home.sessionVariables = {
+ QT_QPA_PLATFORM = "wayland";
+ GBM_BACKEND = "nvidia-drm";
+ __GLX_VENDOR_LIBRARY_NAME = "nvidia";
+ };
}