summaryrefslogtreecommitdiff
path: root/modules/home-manager/personal
diff options
context:
space:
mode:
authoraristote <quentin.aristote@irif.fr>2023-05-02 16:13:55 +0200
committeraristote <quentin.aristote@irif.fr>2023-05-02 16:14:55 +0200
commit8eef92803d7ee98c919ac490416761657f3b2139 (patch)
tree293fb2ca52d2c7ce366697a533688e8c147c49ba /modules/home-manager/personal
parentb2490bae8698748d471add8e31bf412b32abaac7 (diff)
home: work: add latexmkrc
Diffstat (limited to 'modules/home-manager/personal')
-rw-r--r--modules/home-manager/personal/identities.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/home-manager/personal/identities.nix b/modules/home-manager/personal/identities.nix
index 99ec5f9..32e216c 100644
--- a/modules/home-manager/personal/identities.nix
+++ b/modules/home-manager/personal/identities.nix
@@ -58,9 +58,7 @@ in {
address = "quentin.aristote@irif.fr";
userName = "aristote";
realName = "Quentin Aristote";
- aliases = [
- "aristote@irif.fr"
- ];
+ aliases = [ "aristote@irif.fr" ];
folders = {
drafts = "Drafts";
inbox = "Inbox";
@@ -90,7 +88,8 @@ in {
home = lib.mkIf cfg.work {
packages = with pkgs; [ zotero evince ];
- sessionVariables.VIEWER = "evince";
+ file.".latexmkrc".source =
+ lib.mkDefault config.personal.home.dotfiles.latexmkrc;
};
};
}