2020-04-24 04:08:44 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
# Monitoring
|
|
|
|
htop
|
|
|
|
# Password management
|
2020-05-10 03:13:30 +02:00
|
|
|
gnupg
|
2020-05-08 21:53:52 +02:00
|
|
|
pass-wayland
|
|
|
|
passff-host
|
|
|
|
gitAndTools.pass-git-helper
|
2020-05-19 13:26:50 +02:00
|
|
|
pinentry-gtk2
|
2020-04-24 04:08:44 +02:00
|
|
|
# Browsers
|
2020-05-16 05:20:59 +02:00
|
|
|
(firefox.override { extraNativeMessagingHosts = [ passff-host ]; })
|
2020-05-08 21:53:52 +02:00
|
|
|
chromium
|
2020-04-24 04:08:44 +02:00
|
|
|
# LaTeX
|
2020-05-09 01:17:35 +02:00
|
|
|
texlive.combined.scheme-full
|
2020-05-08 21:53:52 +02:00
|
|
|
pandoc
|
2020-05-09 13:53:59 +02:00
|
|
|
# Text editors
|
|
|
|
neovim
|
2020-05-09 18:45:10 +02:00
|
|
|
emacs
|
|
|
|
ripgrep
|
|
|
|
fd
|
|
|
|
clang
|
2020-05-09 18:53:22 +02:00
|
|
|
coreutils
|
2020-05-09 13:53:59 +02:00
|
|
|
# Terminals
|
|
|
|
tmux
|
|
|
|
tmuxp
|
|
|
|
fish
|
|
|
|
# Development
|
|
|
|
git
|
|
|
|
direnv
|
|
|
|
lorri
|
2020-05-10 03:13:30 +02:00
|
|
|
nixfmt
|
2020-05-11 19:08:09 +02:00
|
|
|
podman-compose
|
2020-05-16 05:20:59 +02:00
|
|
|
shellcheck
|
2020-05-19 13:26:50 +02:00
|
|
|
android-studio
|
2020-05-10 03:13:30 +02:00
|
|
|
# Rice
|
|
|
|
adapta-gtk-theme
|
|
|
|
paper-icon-theme
|
2020-05-11 06:39:22 +02:00
|
|
|
# Audio
|
|
|
|
mopidy
|
|
|
|
ncmpcpp
|
2020-05-14 03:04:30 +02:00
|
|
|
mpc_cli
|
2020-05-15 03:43:23 +02:00
|
|
|
alsa-firmware
|
2020-05-11 06:39:22 +02:00
|
|
|
# Productivity
|
|
|
|
fff
|
|
|
|
zathura
|
|
|
|
libreoffice
|
2020-05-14 03:04:30 +02:00
|
|
|
gnome3.simple-scan
|
2020-05-11 19:08:09 +02:00
|
|
|
# Propietary
|
|
|
|
skypeforlinux
|
|
|
|
# Mail stack
|
|
|
|
neomutt
|
|
|
|
isync
|
|
|
|
notmuch
|
|
|
|
msmtp
|
2020-05-14 02:09:23 +02:00
|
|
|
imapnotify
|
2020-05-11 19:08:09 +02:00
|
|
|
w3m
|
|
|
|
urlscan
|
2020-05-14 02:09:23 +02:00
|
|
|
# Media
|
|
|
|
gimp
|
2020-05-15 03:43:23 +02:00
|
|
|
mpv
|
|
|
|
nodePackages.webtorrent-cli
|
2020-05-14 02:09:23 +02:00
|
|
|
# File management
|
|
|
|
zip
|
|
|
|
unzip
|
|
|
|
unrar
|
2020-04-24 04:08:44 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
# Fonts declaration
|
|
|
|
fonts = {
|
|
|
|
fonts = with pkgs; [
|
|
|
|
google-fonts
|
2020-05-10 03:13:30 +02:00
|
|
|
emacs-all-the-icons-fonts
|
2020-05-14 02:09:23 +02:00
|
|
|
terminus-nerdfont
|
2020-04-24 04:08:44 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|