BaAdd Package Sets

David Crompton 2023-07-27 13:14:02 -04:00
parent d85a6362bf
commit bde0963763
3 changed files with 20 additions and 0 deletions

View File

@ -8,6 +8,8 @@
imports =
[
./hardware-configuration.nix
# Set of System Wide Available Packages
./packages.nix
];
# Use the systemd-boot EFI boot loader.

View File

@ -0,0 +1,5 @@
{ ... }: {
imports = [
./packages/office.nix
];
}

View File

@ -0,0 +1,13 @@
{ pkgs, ...}: {
environment.systemPackages = with pkgs; [
# Browsers:
firefox
chromium
# Document editting
libreoffice
# Latex support
texlive.combined.scheme-full
# Document conversion
pandoc
];
}