summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorz0al <12673605+z0al@users.noreply.github.com>2024-12-04 19:03:03 +0000
committerz0al <12673605+z0al@users.noreply.github.com>2024-12-04 19:03:03 +0000
commit9a5955601847c728ffb98e70b89a359390b24d28 (patch)
tree6493072177f4a994dba76a427de067c28ede9046 /modules
parente7a71f8ec55564f54791e0bd9274f2910c86f8f2 (diff)
fix(aerospace): allow startup commands
Diffstat (limited to 'modules')
-rw-r--r--modules/services/aerospace/default.nix7
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 ];