Add wkhtmltopdf
This commit is contained in:
parent
9b1c35bd33
commit
706efabefa
|
@ -35,6 +35,8 @@
|
||||||
type = "Application";
|
type = "Application";
|
||||||
mimeTypes = [ "x-scheme-handler/org-protocol" ];
|
mimeTypes = [ "x-scheme-handler/org-protocol" ];
|
||||||
})
|
})
|
||||||
|
# For format output
|
||||||
|
wkhtmltopdf
|
||||||
];
|
];
|
||||||
programs.emacs = {
|
programs.emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -221,7 +221,9 @@ in {
|
||||||
# Enable unfree packages
|
# Enable unfree packages
|
||||||
nixpkgs.config.allowUnfree = config.nathan.config.enableUnfree;
|
nixpkgs.config.allowUnfree = config.nathan.config.enableUnfree;
|
||||||
# Work around for discord jank ugh
|
# 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
|
# Set system state version
|
||||||
system.stateVersion = lib.mkDefault "22.05";
|
system.stateVersion = lib.mkDefault "22.05";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue