From ce0be14dbbbe9991b3acc7fe94ed7d0e4284f2f5 Mon Sep 17 00:00:00 2001 From: William Date: Fri, 2 May 2025 23:56:32 -0300 Subject: [PATCH] No ulauncher for now, maybe when I finally switch to hyprland --- users/modules/user/programs.nix | 66 ++++++++++++++++----------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/users/modules/user/programs.nix b/users/modules/user/programs.nix index c7b8ee6..65985d8 100644 --- a/users/modules/user/programs.nix +++ b/users/modules/user/programs.nix @@ -111,9 +111,9 @@ (lib.mkIf hostType.isWorkstation { fonts.fontconfig.enable = true; - home.packages = with pkgs; [ - ulauncher - ]; + # home.packages = with pkgs; [ + # ulauncher + # ]; programs = { password-store.package = pkgs.pass-wayland; @@ -147,36 +147,36 @@ }; }; - systemd.user.services.ulauncher = { - Unit = { - Description = "Ulauncher Application Launcher"; - After = [ "graphical-session.target" ]; - }; - Service = { - Type = "simple"; - Environment = - let - pydeps = pkgs.python3.withPackages ( - pp: with pp; [ - # dependencies for ulauncher-albert-calculate-anything - parsedatetime - pint - pytz - requests - simpleeval - ] - ); - in - [ - "PYTHONPATH=${pydeps}/${pydeps.sitePackages}" - ]; - ExecStart = pkgs.writeShellScript "ulauncher-env-wrapper.sh" '' - export PATH="''${XDG_BIN_HOME}:$HOME/.nix-profile/bin:/etc/profiles/per-user/$USER/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin" - export GDK_BACKEND=wayland - exec ${pkgs.ulauncher}/bin/ulauncher --hide-window - ''; - }; - }; + # systemd.user.services.ulauncher = { + # Unit = { + # Description = "Ulauncher Application Launcher"; + # After = [ "graphical-session.target" ]; + # }; + # Service = { + # Type = "simple"; + # Environment = + # let + # pydeps = pkgs.python3.withPackages ( + # pp: with pp; [ + # # dependencies for ulauncher-albert-calculate-anything + # parsedatetime + # pint + # pytz + # requests + # simpleeval + # ] + # ); + # in + # [ + # "PYTHONPATH=${pydeps}/${pydeps.sitePackages}" + # ]; + # ExecStart = pkgs.writeShellScript "ulauncher-env-wrapper.sh" '' + # export PATH="''${XDG_BIN_HOME}:$HOME/.nix-profile/bin:/etc/profiles/per-user/$USER/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin" + # export GDK_BACKEND=wayland + # exec ${pkgs.ulauncher}/bin/ulauncher --hide-window + # ''; + # }; + # }; }) ]; }