feat: enable niri
This commit is contained in:
parent
c63f948330
commit
2793140c90
2 changed files with 11 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./agenix
|
||||||
./auth.nix
|
./auth.nix
|
||||||
./gnome.nix
|
./gnome.nix
|
||||||
./printing.nix
|
./printing.nix
|
||||||
|
|
|
||||||
10
modules/utils/niri.nix
Normal file
10
modules/utils/niri.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.niri.enable = true;
|
||||||
|
|
||||||
|
# Install xwayland-satellite for xwayland support
|
||||||
|
systemPackages = with pkgs; [
|
||||||
|
xwayland-satellite
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue