1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

smug: add new option introduced by v0.3.7 (#7930)

Adds 'selected' option for tmux windows
This commit is contained in:
Dash 2025-10-06 21:03:47 +08:00 committed by GitHub
parent 6f4021da5d
commit b72be79a42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -59,6 +59,14 @@ in
'';
};
selected = lib.mkOption {
type = lib.types.nullOr lib.types.bool;
default = null;
description = ''
Whether this window should be selected by default at session start.
'';
};
root = mkOptionRoot "Root path of window. This is relative to the path of the smug project.";
commands = mkOptionCommands "Commands to execute when window starts.";