dotfiles/nix-conf/home/common.nix

74 lines
1.0 KiB
Nix
Raw Normal View History

2022-09-10 14:51:06 +00:00
{ config, pkgs, ... }:
{
imports = [
./zsh.nix
];
home.packages = with pkgs; [
2022-09-15 09:39:15 +00:00
aspell
aspellDicts.en
aspellDicts.en-computers
aspellDicts.en-science
2022-09-10 14:51:06 +00:00
bat
bottom
2022-09-13 06:48:02 +00:00
broot
2022-09-10 14:51:06 +00:00
curl
difftastic
#docker
#docker-compose
duf
du-dust
elinks
exa
fd
fzf
git
gnupg
gopass
gopass-jsonapi
heroku
2022-09-15 09:39:15 +00:00
ispell
2022-09-10 14:51:06 +00:00
isync
jq
lscolors
2022-09-13 06:48:02 +00:00
lsd
2022-09-10 14:51:06 +00:00
lynx
mopidy
mopidy-ytmusic
mopidy-scrobbler
mpv
mu
neovim
nix-info
2022-09-13 06:48:02 +00:00
nix-prefetch-git
nix-prefetch-github
2022-09-15 09:39:15 +00:00
pinentry
2022-09-10 14:51:06 +00:00
#procs
libqalculate
ripgrep
rlwrap
sd
tealdeer
ugrep
vim
w3m
2022-09-13 06:48:02 +00:00
zenith
2022-09-10 14:51:06 +00:00
];
programs.gpg.enable = true;
programs.tmux = {
enable = true;
terminal = "screen-256color";
#tmuxp.enable = true;
extraConfig = ''
set-option -g status-bg '#666666'
set-option -g status-fg '#aaaaaa'
set-option -g status-left-length 50
set-option -g status-right " #(date ''\'+%a, %b %d - %I:%M''\') "
'';
};
}