diff --git a/modules/hyprland/home-manager.nix b/modules/hyprland/home-manager.nix index 2fb3fb1..9ef807e 100644 --- a/modules/hyprland/home-manager.nix +++ b/modules/hyprland/home-manager.nix @@ -176,7 +176,6 @@ in # Set-up the scripts for services and apps. home.packages = lib.mkIf cfg.scripts.startup.enable [ (import ./scripts/start_services.nix pkgs) - (import ./scripts/start_apps.nix pkgs) ]; # Then add the hyprland screenshot scripts. @@ -206,9 +205,6 @@ in # Start the core services of my desktop exec-once = start_services - # Open the apps I always use - exec-once = start_apps - # Set cursor size. exec-once = hyprctl setcursor 24 env = XCURSOR_SIZE, 24 diff --git a/modules/hyprland/scripts/start_apps.nix b/modules/hyprland/scripts/start_apps.nix deleted file mode 100755 index 27740d5..0000000 --- a/modules/hyprland/scripts/start_apps.nix +++ /dev/null @@ -1,15 +0,0 @@ -pkgs: - -pkgs.writeShellScriptBin "start_apps" '' - # Open qbittorrent - qbittorrent & - - # Open vesktop - vesktop & - - # Open steam - steam & - - # Open firefox - firefox -''