1

Revert "Update hyprland autostart options"

This reverts commit d04089f74e.
This commit is contained in:
2024-06-03 18:47:37 +02:00
parent eb3a106d4e
commit dbc84a1d97

View File

@ -53,27 +53,15 @@ with mylib.modules; {
''; '';
}; };
autostart = { autostart = mkOption {
immediate = mkOption { type = types.listOf types.str;
type = types.listOf types.str; description = "Programs to launch when Hyprland starts";
description = "Programs to launch when Hyprland starts"; example = ''
example = '' [
[ "keepassxc"
"kitty" "nextcloud --background"
] ]
''; '';
};
delayed = mkOption {
type = types.listOf types.str;
description = "Programs to launch with a slight delay when Hyprland starts (e.g. because they need waybar to display tray indicators)";
example = ''
[
"keepassxc"
"nextcloud --background"
];
'';
};
}; };
workspacerules = mkOption { workspacerules = mkOption {