1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00

fix(aerospace): remove unusable on-window-detected option

This commit is contained in:
Sam Ritchie 2024-12-05 11:34:22 +11:00
parent 55d07816a0
commit b3eef1e78e
No known key found for this signature in database
GPG key ID: 95FC7B4662F2BBFB

View file

@ -9,7 +9,9 @@ let
cfg = config.services.aerospace;
format = pkgs.formats.toml { };
configFile = format.generate "aerospace.toml" cfg.settings;
baseConfigFile = format.generate "aerospace-base.toml" cfg.settings;
baseConfig = builtins.readFile baseConfigFile;
configFile = pkgs.writeText "aerospace.toml" (baseConfig + "\n" + cfg.extraConfig);
in
{
@ -71,11 +73,6 @@ in
default = "auto";
description = "Default orientation for the root container.";
};
on-window-detected = lib.mkOption {
type = listOf str;
default = [ ];
description = "Commands to run every time a new window is detected.";
};
on-focus-changed = lib.mkOption {
type = listOf str;
default = [ ];
@ -129,6 +126,17 @@ in
for supported values.
'';
};
extraConfig = lib.mkOption {
type = str;
default = "";
example = ''
[[on-window-detected]]
if.app-id = "com.alexandersandberg.balance"
run = "layout floating"
'';
description = "Extra configuration to append to the generated configuration file.";
};
};
};
@ -143,6 +151,10 @@ in
assertion = cfg.settings.after-login-command == [ ];
message = "AeroSpace will not run these commands as it does not start itself.";
}
{
assertion = !(cfg.settings ? on-window-detected);
message = "Nix TOML formatter cannot parse this option, entries must be manually added to extraConfig. See https://nikitabobko.github.io/AeroSpace/guide#on-window-detected-callback for format.";
}
];
environment.systemPackages = [ cfg.package ];