config.nix/home/desktop/window-managers/default.nix
2026-04-11 17:30:53 +02:00

24 lines
261 B
Nix

{
config,
lib,
pkgs,
...
}:
{
options = {
desktop.window-managers = {
monitors = {
name = lib.mkOption {
default = "";
};
};
};
};
imports = [
./hyprland.nix
./niri.nix
./sway.nix
];
}