panacea/modules/software.nix

104 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
# 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
2021-02-20 12:04:23 +01:00
pulsemixer
# 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
2021-03-29 19:02:45 +02:00
lmms
# 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
2021-02-22 00:58:21 +01:00
## Nix
2020-09-24 00:08:29 +02:00
nixfmt
2021-02-17 21:53:03 +01:00
niv
## Python
nodePackages.pyright
black
2021-02-22 00:58:21 +01:00
## C/C++
2020-11-14 16:12:46 +01:00
clang-tools
2021-02-22 00:58:21 +01:00
## Javascript
2020-11-25 00:24:21 +01:00
nodePackages.javascript-typescript-langserver
2021-02-22 00:58:21 +01:00
## Go
2021-02-06 00:31:14 +01:00
gopls
gotests
gore
golangci-lint
2020-04-24 04:08:44 +02:00
];
# Fonts declaration
fonts.fonts = with pkgs; [
google-fonts
inconsolata-nerdfont
terminus_font_ttf
iosevka-bin
];
2020-04-24 04:08:44 +02:00
}