home | refactor

This commit is contained in:
Don Harper 2024-01-06 14:02:54 -06:00
parent 672d71a83a
commit 73fadb981d
468 changed files with 197 additions and 210 deletions

88
home/common/default.nix Normal file
View file

@ -0,0 +1,88 @@
{ config, pkgs, ... }:
{
imports = [
./bash.nix
./btop.nix
./git.nix
./gnupg.nix
./khal.nix
./khard.nix
./lf.nix
./liquidprompt.nix
./listadmin.nix
./mail.nix
./mopidy.nix
./neovim.nix
./newsboat.nix
./taskwarrior.nix
./topgrade.nix
./tmux.nix
./vifm.nix
];
home.packages = with pkgs; [
bc
bitwarden-cli
bottom
cargo
diff-so-fancy
exiftool
fbterm
ffmpeg
figlet
file
fzf
gdu
gitui
gh
gmailctl
gnumake
gnupg
gping
gtop
htop
hugo
immich-cli
jq
keychain
keyutils
lazygit
links2
liquidprompt
lunarvim
moreutils
mosh
mutt-ics
ncdu
neofetch
neomutt
nmap
nodejs_21
notmuch
pandoc
pinentry
ps_mem
psmisc
ranger
socat
sqlite
syncthing
tailscale
tig
tmux-cssh
toot
topgrade
tut
units
unzip
urlscan
vdirsyncer
vlock
wget
zip
];
services = {
syncthing = {
tray.enable = true;
};
};
}