Add some Libresign dependencies.

This commit is contained in:
Nolan Darilek 2025-05-16 12:49:12 -05:00
parent 269e691ae1
commit 4e562a9364

View file

@ -61,12 +61,14 @@
}; };
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
users.users.nextcloud.extraGroups = [ "docker" ]; users.users.nextcloud.extraGroups = [ "docker" ];
environment.systemPackages = [ environment.systemPackages = with pkgs; [
poppler_utils
(pkgs.writeScriptBin "occ" '' (pkgs.writeScriptBin "occ" ''
#!${pkgs.bash}/bin/bash #!${pkgs.bash}/bin/bash
exec nextcloud-occ "$@" exec nextcloud-occ "$@"
'') '')
]; ];
programs.java.binfmt = true;
system.stateVersion = "24.11"; system.stateVersion = "24.11";
}; };
# https://discourse.nixos.org/t/podman-docker-in-nixos-container-ideally-in-unprivileged-one/22909/12 # https://discourse.nixos.org/t/podman-docker-in-nixos-container-ideally-in-unprivileged-one/22909/12