panacea/modules/software.nix

32 lines
476 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Monitoring
htop
# Password management
pass-wayland
passff-host
gitAndTools.pass-git-helper
# Browsers
firefox
chromium
# LaTeX
texlive.combind.scheme-full
pandoc
pandoc-citeproc
];
# Fonts declaration
fonts = {
fonts = with pkgs; [
google-fonts
siji
cherry
iosevka
emacs.all-the-icons-fonts
];
};
}