mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
fix emacs path stuff
This commit is contained in:
parent
7c43c1c753
commit
6facfd9715
3 changed files with 3 additions and 3 deletions
|
@ -39,7 +39,7 @@ in {
|
|||
o = "open";
|
||||
oa = "open -a";
|
||||
pinentry = "pinentry-mac";
|
||||
} // lib.attrsets.mapAttrs (name: value: "open -a " + value) appCommands);
|
||||
} // lib.attrsets.mapAttrs (name: value: "open -a '" + value + "'") appCommands);
|
||||
|
||||
programs.firefox.package = mkIf stdenv.isDarwin pkgs.firefox-mac;
|
||||
programs.chromium.package = mkIf stdenv.isDarwin pkgs.chromium-mac;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
enable = true;
|
||||
config = {
|
||||
ProgramArguments = [
|
||||
"${config.home.homeDirectory}/.nix-profile/bin/emacs"
|
||||
"${config.programs.emacs.finalPackage}/bin/emacs"
|
||||
"--fg-daemon"
|
||||
];
|
||||
KeepAlive = true;
|
||||
|
|
|
@ -563,7 +563,7 @@ in {
|
|||
(setq org-export-latex-format-toc-function 'org-export-latex-no-toc)
|
||||
(setq org-latex-pdf-process
|
||||
'("latexmk -pdflatex='pdflatex -interaction nonstopmode' -pdf -bibtex -f %f"))
|
||||
(add-to-list 'exec-path "${config.home.homeDirectory}/.nix-profile/bin")
|
||||
(add-to-list 'exec-path "${config.home.profileDirectory}/bin")
|
||||
(add-to-list 'org-latex-classes
|
||||
'("apa6"
|
||||
"\\documentclass{apa6}"
|
||||
|
|
Loading…
Add table
Reference in a new issue