try out niri and up repeat delay in hyprland

This commit is contained in:
Kopatz
2025-10-09 20:58:11 +02:00
parent ed3966c087
commit 5ddf06cad0
4 changed files with 20 additions and 0 deletions

View File

@@ -95,6 +95,7 @@ in
accel_profile = "flat"; accel_profile = "flat";
sensitivity = 0; sensitivity = 0;
repeat_delay = 250;
}; };
#cursor = { no_hardware_cursors = true; }; #cursor = { no_hardware_cursors = true; };

View File

@@ -28,5 +28,6 @@
./basics.nix ./basics.nix
./sway.nix ./sway.nix
./gpu-screen-recorder-ui.nix ./gpu-screen-recorder-ui.nix
./niri.nix
]; ];
} }

View File

@@ -0,0 +1,17 @@
{ config, pkgs, lib, ... }:
let cfg = config.custom.graphical.niri;
in {
options = {
custom.graphical.niri.enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable niri";
};
};
config = lib.mkIf cfg.enable {
programs.niri = { enable = true; };
environment.systemPackages = with pkgs; [ xwayland-satellite ];
};
}

View File

@@ -82,6 +82,7 @@
noise-supression.enable = true; noise-supression.enable = true;
obs.enable = true; obs.enable = true;
gpu-screen-recorder-ui.enable = true; gpu-screen-recorder-ui.enable = true;
niri.enable = true;
#openrgb.enable = true; #openrgb.enable = true;
sddm.enable = true; sddm.enable = true;
#plasma.enable = true; #plasma.enable = true;