Niri > Hyprland

This commit is contained in:
Aleksandr Lebedev 2025-06-09 22:35:14 +02:00
parent 48427feb65
commit f7a08debf5
13 changed files with 803 additions and 84 deletions

View file

@ -0,0 +1,22 @@
{ pkgs, inputs, ...}:
{
nixpkgs.overlays = [
inputs.niri-flake.overlays.niri
];
imports = [
inputs.niri-flake.nixosModules.niri
];
programs.niri = {
enable = true;
package = pkgs.niri-unstable;
};
niri-flake.cache.enable = true;
environment.systemPackages = with pkgs;[
wl-clipboard
wayland-utils
libsecret
gamescope
xwayland-satellite-stable
swaybg
];
}