From bb6d3eb92d0d65069742369ba9e5b671827c4802 Mon Sep 17 00:00:00 2001 From: cubernetes Date: Wed, 24 Jun 2026 21:08:11 +0200 Subject: [PATCH] Add many more packages and nxfnd function --- hosts/fw/configuration.nix | 15 +++++++++++++++ modules/home-manager/bash.nix | 1 + 2 files changed, 16 insertions(+) diff --git a/hosts/fw/configuration.nix b/hosts/fw/configuration.nix index f0c4947..a0b9ee0 100644 --- a/hosts/fw/configuration.nix +++ b/hosts/fw/configuration.nix @@ -248,5 +248,20 @@ gh rustdesk anydesk + jq + android-tools + gdu + gron + mkvtoolnix-cli + ydiff + wl-clipboard-rs + protonvpn-gui + iperf3 + pv + libarchive + libreoffice + traceroute + pciutils + usbutils ]; } diff --git a/modules/home-manager/bash.nix b/modules/home-manager/bash.nix index 0938d63..7b276a8 100644 --- a/modules/home-manager/bash.nix +++ b/modules/home-manager/bash.nix @@ -5,6 +5,7 @@ enable = true; initExtra = '' xset r rate 200 60 + nxfnd () { [ $# -eq 1 ] || { echo "Expecting exactly one argument"; return 1; }; nix-locate --type x --minimal --whole-name "/$1"; } ''; shellAliases = { rb = "sudo nixos-rebuild switch --flake /etc/nixos#fw";