This commit is contained in:
martyTF 2026-03-29 08:16:58 +02:00
parent 00da286651
commit a9a77e75fe
12 changed files with 307 additions and 3 deletions

22
home/niri.nix Normal file
View file

@ -0,0 +1,22 @@
{
config,
pkgs,
lib,
inputs,
...
}:
{
options = {
desktop = {
sway = {
enable = lib.mkEnableOption "enable sway";
};
};
};
config = {
wayland.windowManager.niri = {
};
};
};