panacea/modules/software.nix

32 lines
476 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-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-08 21:53:52 +02:00
firefox
chromium
2020-04-24 04:08:44 +02:00
# LaTeX
2020-05-08 21:53:52 +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
];
};
}