diff options
Diffstat (limited to 'lib/packages.nix')
-rw-r--r-- | lib/packages.nix | 125 |
1 files changed, 63 insertions, 62 deletions
diff --git a/lib/packages.nix b/lib/packages.nix index 41acbef..e73eafc 100644 --- a/lib/packages.nix +++ b/lib/packages.nix @@ -1,4 +1,4 @@ -{ pkgs }: +{ pkgs, ... }: # All common packages go here. Linux-specific should go in `linux.nix' @@ -19,64 +19,65 @@ let cp ./zebra $out/bin ''; }; -in [ -asciinema -ag -amfora -aspellDicts.en -bat -bc -cabal2nix -cloc -cmatrix -ctags -dhall -direnv -entr -eternal-terminal -expect -fd -figlet -file -font-awesome_5 -gitAndTools.stgit -git-lfs -git-revise -github-cli -hashcash -htop -httpstat -ispell -jq -lsof -material-icons -mononoki -mpc_cli -ncdu -ncmpc -nix-prefetch-scripts -nixos-generators -noto-fonts-emoji -opentimestamps-client -ormolu -paperkey -pass -perlPackages.GitAutofixup -pianobar -pup -pwgen -python37Packages.black -ranger -ripgrep -shellcheck -tmux -tree -unrar -unzip -urlscan -vimpager -w3m -whois -zebra -zip -] +in { + home.packages = [ + asciinema + ag + amfora + aspellDicts.en + bat + bc + cabal2nix + cloc + cmatrix + ctags + dhall + direnv + entr + eternal-terminal + expect + fd + figlet + file + font-awesome_5 + gitAndTools.stgit + git-lfs + git-revise + github-cli + hashcash + htop + httpstat + ispell + jq + lsof + material-icons + mononoki + mpc_cli + ncdu + ncmpc + nix-prefetch-scripts + nixos-generators + noto-fonts-emoji + opentimestamps-client + ormolu + paperkey + pass + perlPackages.GitAutofixup + pianobar + pup + pwgen + ranger + ripgrep + shellcheck + tmux + tree + unrar + unzip + urlscan + vimpager + w3m + whois + zebra + zip + ]; +} |