diff options
| author | z0al <12673605+z0al@users.noreply.github.com> | 2024-12-04 19:03:03 +0000 |
|---|---|---|
| committer | z0al <12673605+z0al@users.noreply.github.com> | 2024-12-04 19:03:03 +0000 |
| commit | 9a5955601847c728ffb98e70b89a359390b24d28 (patch) | |
| tree | 6493072177f4a994dba76a427de067c28ede9046 /modules | |
| parent | e7a71f8ec55564f54791e0bd9274f2910c86f8f2 (diff) | |
fix(aerospace): allow startup commands
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/services/aerospace/default.nix | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/modules/services/aerospace/default.nix b/modules/services/aerospace/default.nix index 50d47b3..531e7b2 100644 --- a/modules/services/aerospace/default.nix +++ b/modules/services/aerospace/default.nix @@ -36,7 +36,8 @@ in after-startup-command = lib.mkOption { type = listOf str; default = [ ]; - description = "Do not use AeroSpace to run commands after startup. (Managed by launchd instead)"; + description = "Add commands that run after AeroSpace startup"; + example = [ "layout tiles" ]; }; enable-normalization-flatten-containers = lib.mkOption { type = bool; @@ -142,10 +143,6 @@ in assertion = cfg.settings.after-login-command == [ ]; message = "AeroSpace will not run these commands as it does not start itself."; } - { - assertion = cfg.settings.after-startup-command == [ ]; - message = "AeroSpace will not run these commands as it does not start itself."; - } ]; environment.systemPackages = [ cfg.package ]; |
