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