13 lines
266 B
Nix
13 lines
266 B
Nix
{ ... }:
|
|
{
|
|
programs.niri.settings.layer-rules = [
|
|
{
|
|
matches = [ { namespace = "^notifications$"; } ];
|
|
block-out-from = "screen-capture";
|
|
}
|
|
{
|
|
matches = [ { namespace = "^waybar$"; } ];
|
|
place-within-backdrop = false;
|
|
}
|
|
];
|
|
}
|