From 6b858163f2d8d3a2e6035195a2e6d89140b59dcd Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Mon, 3 Jun 2024 18:47:37 +0200 Subject: [PATCH] Revert "Update hyprland autostart options" This reverts commit d04089f74ed676b083b581aaf0869fee03c50c84. --- home/modules/hyprland/options.nix | 30 +++++++++--------------------- 1 file changed, 9 insertions(+), 21 deletions(-) diff --git a/home/modules/hyprland/options.nix b/home/modules/hyprland/options.nix index 65d5e924..90d53560 100644 --- a/home/modules/hyprland/options.nix +++ b/home/modules/hyprland/options.nix @@ -53,27 +53,15 @@ with mylib.modules; { ''; }; - autostart = { - immediate = mkOption { - type = types.listOf types.str; - description = "Programs to launch when Hyprland starts"; - example = '' - [ - "kitty" - ] - ''; - }; - - 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" - ]; - ''; - }; + autostart = mkOption { + type = types.listOf types.str; + description = "Programs to launch when Hyprland starts"; + example = '' + [ + "keepassxc" + "nextcloud --background" + ] + ''; }; workspacerules = mkOption {