try out niri and up repeat delay in hyprland
This commit is contained in:
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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user