waffentrager: add archivizers

This commit is contained in:
Mateusz Słodkowicz 2024-03-26 09:22:50 +01:00
parent 9242bc2a04
commit 382504ee53
Signed by: materus
GPG Key ID: 28D140BCA60B4FD1
2 changed files with 16 additions and 2 deletions

View File

@ -10,10 +10,22 @@
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
materus.profile.nixpkgs.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
libraspberrypi libraspberrypi
raspberrypi-eeprom raspberrypi-eeprom
git git
p7zip
unrar
bzip2
unzip
zstd
xz
zip
gzip
]; ];
sound.enable = false; sound.enable = false;
boot.tmp.useTmpfs = true; boot.tmp.useTmpfs = true;

View File

@ -39,7 +39,9 @@
appstoreEnable = true; appstoreEnable = true;
database.createLocally = true; database.createLocally = true;
nginx.recommendedHttpHeaders = true; nginx.recommendedHttpHeaders = true;
extraApps = { notify_push = pkgs.nextcloud28Packages.apps.notify_push; }; extraApps = with pkgs.nextcloud28Packages.apps; {
inherit notify_push previewgenerator;
};
extraOptions = { extraOptions = {
mail_smtpmode = "sendmail"; mail_smtpmode = "sendmail";
mail_sendmailmode = "pipe"; mail_sendmailmode = "pipe";