config/modules/macos/tiling/default.nix

17 lines
309 B
Nix
Raw Normal View History

2025-05-07 10:22:05 -07:00
{ lib, ... }: let
inherit (lib) types;
in {
2025-05-01 12:41:47 -07:00
imports = [
./sketchybar.nix
2025-05-07 10:22:05 -07:00
./aerospace.nix
2025-05-01 12:41:47 -07:00
];
2025-05-07 10:22:05 -07:00
options = {
shared.darwin.tiling.enable = lib.mkOption {
type = types.bool;
default = false;
example = true;
description = "Enable tiling window management.";
};
};
2025-05-01 12:41:47 -07:00
}