use niri with overview pr

This commit is contained in:
ulic-youthlic 2025-04-17 12:39:34 +08:00
parent c1dd700f20
commit b7eeaaa072
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
4 changed files with 142 additions and 51 deletions

View file

@ -1 +1,11 @@
{ inputs, ... }: inputs.niri-flake.overlays.niri
{ inputs, ... }:
final: prev:
let
inherit (final) stdenv;
inherit (stdenv.hostPlatform) system;
in
{
niri-unstable = inputs.niri-flake.packages."${system}".niri-unstable;
niri-overview = inputs.niri-overview.packages."${system}".niri;
niri-stable = inputs.niri-flake.packages."${system}".niri-stable;
}