try out niri and up repeat delay in hyprland
This commit is contained in:
@@ -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; };
|
||||||
|
|||||||
@@ -28,5 +28,6 @@
|
|||||||
./basics.nix
|
./basics.nix
|
||||||
./sway.nix
|
./sway.nix
|
||||||
./gpu-screen-recorder-ui.nix
|
./gpu-screen-recorder-ui.nix
|
||||||
|
./niri.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
17
modules/graphical/niri.nix
Normal file
17
modules/graphical/niri.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user