BaAdd Package Sets
parent
ea3af2986b
commit
d743b61df9
|
@ -8,6 +8,8 @@
|
|||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
# Set of System Wide Available Packages
|
||||
./packages.nix
|
||||
];
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
./packages/office.nix
|
||||
];
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Browsers:
|
||||
firefox
|
||||
chromium
|
||||
# Document editting
|
||||
libreoffice
|
||||
# Latex support
|
||||
texlive.combined.scheme-full
|
||||
# Document conversion
|
||||
pandoc
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue