this post was submitted on 28 Sep 2022
0 points (50.0% liked)

Linux

47337 readers
1351 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

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?

top 4 comments
sorted by: hot top controversial new old
[–] hfkldjbuq@beehaw.org 1 points 2 years ago* (last edited 2 years ago) (1 children)

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

[–] liberatedGuy@lemmy.ml 1 points 1 year 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 1 points 2 years ago (1 children)

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?

[–] liberatedGuy@lemmy.ml 0 points 1 year 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.