panacea/modules/software.nix

70 lines
1.0 KiB
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Monitoring
htop
# Password management
gnupg
pinentry-curses
pass-wayland
passff-host
gitAndTools.pass-git-helper
# Browsers
(firefox-wayland.override { extraNativeMessagingHosts = [ passff-host ]; })
chromium
# LaTeX
texlive.combined.scheme-full
pandoc
# Text editors
neovim
emacs
ripgrep
fd
clang
coreutils
# Terminals
tmux
tmuxp
fish
# Development
git
direnv
lorri
nixfmt
podman-compose
# Rice
gtk_engines
adapta-gtk-theme
paper-icon-theme
# Audio
mopidy
ncmpcpp
# Productivity
fff
zathura
libreoffice
# Propietary
skypeforlinux
# Mail stack
neomutt
isync
notmuch
msmtp
w3m
urlscan
];
# Fonts declaration
fonts = {
fonts = with pkgs; [
google-fonts
siji
cherry
iosevka
emacs-all-the-icons-fonts
];
};
}