When using the Nix Package Manager on Debian 11, I have seen that it doesn’t automatically create .desktop files for GUI programs. This would have been fine if I was using nix to install one or two programs, but I was looking forward to use it a regular package manager. Does anyone know how to automate the process?

  • @hfkldjbuq@beehaw.org
    link
    fedilink
    2
    edit-2
    1 year ago

    Which one in specific? There are some packages which maintainers did not bother creating xdg desktop specification… you can look into nixpkgs source code to see if they are specified there or not.

    I do not know if Debian is able to pick the desktop files though

    • Libre ExtremistOP
      link
      fedilink
      English
      18 months ago

      Adding those lines to .bashrc, helped with the flatpak commands. I can run them without having to type “flatpak run”. I did this for nix: export XDG_DATA_DIRS=$HOME/.nix-profile/share:$HOME/.share:“${XDG_DATA_DIRS:-/usr/local/share/:/usr/share/}” However, I still cannot see the entries in rofi. The package is Chromium browser.

  • @beetsnuami@slrpnk.net
    link
    fedilink
    21 year ago

    On my NixOS, nix sets the environment variables XDG_DATA_DIRS, XDG_CONFIG_DIRS, etc. Maybe these contain what you‘re looking for? Do you have a path ~/.nix-profile/share/applications?

    • Libre ExtremistOP
      link
      fedilink
      English
      08 months ago

      I have this line export XDG_DATA_DIRS=$HOME/.nix-profile/share:$HOME/.share:“${XDG_DATA_DIRS:-/usr/local/share/:/usr/share/}” Do I need to add anything else? I do have the directory you have mentioned.

  • @jumanjimanju@lemmy.ml
    link
    fedilink
    11 year ago

    Ive barely used Nix, so i cant be of more help than this, but IIRC the .desktop files are created elsewhere. Like inside the nix config folder or something like that