panacea/modules/software.nix

27 lines
456 B
Nix
Raw Normal View History

2020-04-24 04:08:44 +02:00
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Monitoring
htop
# Password management
2020-04-29 02:50:17 +02:00
pass-wayland passff-host gitAndTools.pass-git-helper
2020-04-24 04:08:44 +02:00
# Browsers
firefox chromium
# LaTeX
2020-04-29 02:50:17 +02:00
texlive.combind.scheme-full pandoc pandoc-citeproc
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
emacs.all-the-icons-fonts
2020-04-24 04:08:44 +02:00
];
};
}