Add essential packages

This commit is contained in:
coolneng 2020-04-24 04:08:44 +02:00
parent 4386ea7477
commit 454a1041f2
Signed by: coolneng
GPG Key ID: 9893DA236405AF57

30
modules/software.nix Normal file
View File

@ -0,0 +1,30 @@
{ 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
];
};
}