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-curses
|
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
|
2020-05-11 06:39:22 +02:00
|
|
|
(firefox-wayland.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
|
|
|
|
# Rice
|
2020-05-11 06:39:22 +02:00
|
|
|
gtk_engines
|
2020-05-10 03:13:30 +02:00
|
|
|
adapta-gtk-theme
|
|
|
|
paper-icon-theme
|
2020-05-11 06:39:22 +02:00
|
|
|
# Audio
|
|
|
|
mopidy
|
|
|
|
ncmpcpp
|
|
|
|
# Productivity
|
|
|
|
fff
|
|
|
|
zathura
|
|
|
|
libreoffice
|
2020-04-24 04:08:44 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
# Fonts declaration
|
|
|
|
fonts = {
|
|
|
|
fonts = with pkgs; [
|
|
|
|
google-fonts
|
|
|
|
siji
|
|
|
|
cherry
|
2020-04-29 02:50:17 +02:00
|
|
|
iosevka
|
2020-05-10 03:13:30 +02:00
|
|
|
emacs-all-the-icons-fonts
|
2020-04-24 04:08:44 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|