panacea/modules/software.nix

100 lines
1.5 KiB
Nix
Raw Normal View History

2020-04-24 04:08:44 +02:00
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Monitoring
htop
2020-07-18 22:50:40 +02:00
acpi
2020-04-24 04:08:44 +02:00
# 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-04-24 04:08:44 +02:00
# Browsers
firefox
ungoogled-chromium
2020-04-24 04:08:44 +02:00
# LaTeX
texlive.combined.scheme-full
2020-05-08 21:53:52 +02:00
pandoc
2020-06-02 19:39:57 +02:00
haskellPackages.pandoc-citeproc
# Text editors
neovim
emacsPgtkGcc
2020-05-09 18:45:10 +02:00
ripgrep
fd
clang
2020-05-09 18:53:22 +02:00
coreutils
# Terminals
tmux
tmuxp
fish
# Development
git
direnv
lorri
2020-05-11 19:08:09 +02:00
podman-compose
gnumake
gitAndTools.pre-commit
2020-05-10 03:13:30 +02:00
# Rice
adapta-gtk-theme
paper-icon-theme
# Audio
mopidy
ncmpcpp
2020-05-14 03:04:30 +02:00
mpc_cli
2020-05-15 03:43:23 +02:00
alsa-firmware
# Productivity
fff
zathura
2020-08-29 12:32:09 +02:00
libreoffice-fresh
2020-05-14 03:04:30 +02:00
gnome3.simple-scan
2020-08-29 12:32:09 +02:00
bc
2020-05-11 19:08:09 +02:00
# Mail stack
neomutt
isync
notmuch
msmtp
imapnotify
2020-05-11 19:08:09 +02:00
w3m
urlscan
# Media
gimp
2020-05-15 03:43:23 +02:00
mpv
nodePackages.webtorrent-cli
transmission-gtk
2020-06-08 18:01:00 +02:00
youtube-dl-light
2020-08-29 12:36:47 +02:00
calibre
ardour
# File management
zip
unzip
unar
2020-10-28 16:52:29 +01:00
# Overlays
cachix
# Programming tools
2020-09-24 00:08:29 +02:00
## Shell
shellcheck
shfmt
# Nix
nixfmt
## Python
nodePackages.pyright
black
2020-11-14 16:12:46 +01:00
# C/C++
clang-tools
2020-11-25 00:24:21 +01:00
# Javascript
nodePackages.javascript-typescript-langserver
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
iosevka-bin
2020-04-24 04:08:44 +02:00
];
};
}