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

@@ -28,5 +28,6 @@
./basics.nix
./sway.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 ];
};
}