panacea/modules/software.nix

31 lines
451 B
Nix
Raw Normal View History

2020-04-24 04:08:44 +02:00
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Developement
git lorri
# Monitoring
htop
# Text editors
neovim emacs
# Terminal multiplexing
tmux tmuxp
# Password management
pass passff-host
# Browsers
firefox chromium
# LaTeX
tectonic pandoc
];
# Fonts declaration
fonts = {
fonts = with pkgs; [
google-fonts
siji
cherry
];
};
}