Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

packages: Improve detection for guix. #2021

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion neofetch
Original file line number Diff line number Diff line change
Expand Up @@ -1600,8 +1600,9 @@ get_packages() {
has kpm-pkg && ((packages+=$(kpm --get-selections | grep -cv deinstall$)))

has guix && {
manager=guix-system && tot guix package -p "/run/current-system/profile" -I
manager=guix-system && tot guix package -p /run/current-system/profile -I
manager=guix-user && tot guix package -I
manager=guix-home && tot guix package -p ~/.guix-home/profile -I
}

has nix-store && {
Expand Down