blob: b1121ac1c3ebff78918f8e25c78d3a0a43291948 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{ config, lib, pkgs, inputs, system, ... }:
{
home.packages = with pkgs; [
emacs-all-the-icons-fonts
lynx
pandoc
# general cli utils
tree dnsutils inetutils pijul bat age libsecret gping bottom doggo
cifs-utils jekyll fzf ripgrep fd sd bandwhich eza dive
ripgrep shellcheck graphviz
zip unzip acpi sfz viu glow
yt-dlp weechat hexyl bottom lm_sensors
usbutils libidn bsd-finger cyme
# nix tools
nixpkgs-review nix-top nix-diff nix-tree
# git
gitAndTools.gitAnnex git-bug git-appraise mergiraf
# other things
gauche
# html, js & co
jq html-tidy nodePackages.stylelint nodePackages.js-beautify zola
lowdown
# nix things
nixfmt-rfc-style deploy-rs.deploy-rs
];
}
|