Add wkhtmltopdf

This commit is contained in:
Nathan McCarty 2023-06-01 13:56:06 -04:00
parent 9b1c35bd33
commit 706efabefa
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
2 changed files with 5 additions and 1 deletions

View File

@ -35,6 +35,8 @@
type = "Application";
mimeTypes = [ "x-scheme-handler/org-protocol" ];
})
# For format output
wkhtmltopdf
];
programs.emacs = {
enable = true;

View File

@ -221,7 +221,9 @@ in {
# Enable unfree packages
nixpkgs.config.allowUnfree = config.nathan.config.enableUnfree;
# Work around for discord jank ugh
nixpkgs.config.permittedInsecurePackages = [ "electron-13.6.9" ];
# also wkhtmltopdf
nixpkgs.config.permittedInsecurePackages =
[ "electron-13.6.9" "qtwebkit-5.212.0-alpha4" ];
# Set system state version
system.stateVersion = lib.mkDefault "22.05";