From c8074f10f1ebc27531a2150eb8d909332a25ba39 Mon Sep 17 00:00:00 2001 From: albert Date: Sat, 10 Aug 2024 22:22:32 +0900 Subject: [PATCH] Update installed packages, include nix-search-cli --- nixos/common/packages/small.nix | 39 +++++++++++++++++---------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/nixos/common/packages/small.nix b/nixos/common/packages/small.nix index c2f91495..cfd9d122 100644 --- a/nixos/common/packages/small.nix +++ b/nixos/common/packages/small.nix @@ -1,24 +1,25 @@ { pkgs, system, ... }: { # List packages installed in system profile environment.systemPackages = with pkgs; [ - tmux # terminal multiplexer - rbw # CLI app for Bitwarden - dconf # Required for stylix - ripgrep # Better grep - git # git! - bat # Like cat, but with syntax highlighting - eza # like ls, but prettier - duf # replacement / prettier UI for df - iftop # interface top - network usage - gnupg # GNU Privacy Guard - screen # Terminal screen manager - btop # like htop, but prettier - sshpass # ssh password helper - fd # alternative to "Find" - cryptsetup # used to open LUKS devices - fish # Shell - fastfetch # system information viewer - zoxide # Souped up "cd" - rsync # copy/sync + tmux # terminal multiplexer + rbw # CLI app for Bitwarden + dconf # Required for stylix + ripgrep # Better grep + git # git! + bat # Like cat, but with syntax highlighting + eza # like ls, but prettier + duf # replacement / prettier UI for df + iftop # interface top - network usage + gnupg # GNU Privacy Guard + screen # Terminal screen manager + btop # like htop, but prettier + sshpass # ssh password helper + fd # alternative to "Find" + cryptsetup # used to open LUKS devices + fish # Shell + fastfetch # system information viewer + zoxide # Souped up "cd" + rsync # copy/sync + nix-search-cli # nix package cli search ]; }