panacea/modules/software.nix

74 lines
1.1 KiB
Nix
Raw Normal View History

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
pinentry-gnome
2020-05-08 21:53:52 +02:00
pass-wayland
passff-host
gitAndTools.pass-git-helper
2020-04-24 04:08:44 +02:00
# Browsers
(firefox-wayland.override { extraNativeMessagingHosts = [ passff-host ]; })
2020-05-08 21:53:52 +02:00
chromium
2020-04-24 04:08:44 +02:00
# LaTeX
texlive.combined.scheme-full
2020-05-08 21:53:52 +02:00
pandoc
# Text editors
neovim
2020-05-09 18:45:10 +02:00
emacs
ripgrep
fd
clang
2020-05-09 18:53:22 +02:00
coreutils
# 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-10 03:13:30 +02:00
# Rice
adapta-gtk-theme
paper-icon-theme
# Audio
mopidy
ncmpcpp
# Productivity
fff
zathura
libreoffice
2020-05-11 19:08:09 +02:00
# Propietary
skypeforlinux
# Mail stack
neomutt
isync
notmuch
msmtp
imapnotify
2020-05-11 19:08:09 +02:00
w3m
urlscan
# Media
gimp
# 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
terminus-nerdfont
2020-04-24 04:08:44 +02:00
];
};
}