waffentrager: add archivizers
This commit is contained in:
parent
9242bc2a04
commit
382504ee53
|
@ -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;
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Reference in New Issue