2025-01-30 04:46:54 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
cfg = config.marleyos.bundles.mac;
|
|
|
|
|
|
|
|
inherit (lib.marleyos) enabled disabled;
|
|
|
|
in {
|
|
|
|
options.marleyos.bundles.mac.enable = lib.mkEnableOption "mac";
|
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
marleyos = {
|
|
|
|
isDesktop = true;
|
|
|
|
|
2025-03-22 22:43:45 +00:00
|
|
|
appearance.base = enabled;
|
|
|
|
|
2025-01-30 04:46:54 +00:00
|
|
|
programs = {
|
|
|
|
cli = enabled;
|
|
|
|
journalctl = disabled;
|
|
|
|
systemctl = disabled;
|
|
|
|
|
|
|
|
tui = enabled;
|
2025-03-22 22:13:09 +00:00
|
|
|
cava = lib.mkForce disabled;
|
|
|
|
ncmpcpp = lib.mkForce disabled;
|
2025-01-30 04:46:54 +00:00
|
|
|
|
|
|
|
wezterm = enabled;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|