72 lines
882 B
Nix
72 lines
882 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./bash_complition.nix
|
|
./btop.nix
|
|
./git.nix
|
|
./khal.nix
|
|
./khard.nix
|
|
./lf.nix
|
|
./liquidprompt.nix
|
|
./listadmin.nix
|
|
./mail.nix
|
|
./neovim.nix
|
|
./newsboat.nix
|
|
./taskwarrior.nix
|
|
./topgrade.nix
|
|
./tmux.nix
|
|
./vifm.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
bc
|
|
bitwarden-cli
|
|
diff-so-fancy
|
|
exiftool
|
|
ffmpeg
|
|
figlet
|
|
file
|
|
fzf
|
|
gdu
|
|
gitui
|
|
gh
|
|
gnumake
|
|
gnupg
|
|
gping
|
|
gtop
|
|
htop
|
|
hugo
|
|
jq
|
|
keychain
|
|
keyutils
|
|
lazygit
|
|
links2
|
|
moreutils
|
|
mosh
|
|
mutt-ics
|
|
ncdu
|
|
neofetch
|
|
neomutt
|
|
nmap
|
|
notmuch
|
|
pandoc
|
|
ps_mem
|
|
psmisc
|
|
ranger
|
|
sqlite
|
|
syncthing
|
|
tailscale
|
|
tig
|
|
tmux-cssh
|
|
toot
|
|
topgrade
|
|
tut
|
|
units
|
|
unzip
|
|
urlview
|
|
vdirsyncer
|
|
vlock
|
|
wget
|
|
zip
|
|
];
|
|
|
|
}
|