config.nix/home/niri.nix
2026-03-29 08:16:58 +02:00

22 lines
No EOL
229 B
Nix

{
config,
pkgs,
lib,
inputs,
...
}:
{
options = {
desktop = {
sway = {
enable = lib.mkEnableOption "enable sway";
};
};
};
config = {
wayland.windowManager.niri = {
};
};
};