feat: add 'from' script to get real path of exe

This commit is contained in:
matt1432 2024-07-28 01:44:16 -04:00
parent d823b36559
commit b09cceb259
5 changed files with 64 additions and 53 deletions

View file

@ -6,6 +6,5 @@
./neovim
./nix-index
./tmux
./packages.nix
];
}

View file

@ -1,37 +0,0 @@
{
pkgs,
self,
...
}: {
home.packages =
(with self.packages.${pkgs.system}; [
pokemon-colorscripts
repl
])
++ (with pkgs.nodePackages; [
undollar
])
++ (with pkgs; [
# Networking
dig.dnsutils
mosh
openssh
rsync
wget
# Misc CLI stuff
killall
nix-output-monitor
progress
tree
])
++ [
# This could help as well: nix derivation show -r /run/current-system
(pkgs.writeShellApplication {
name = "listDerivs";
text = ''
nix-store --query --requisites /run/current-system | cut -d- -f2- | sort -u
'';
})
];
}