summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraristote <quentin.aristote@irif.fr>2023-05-02 15:01:42 +0200
committeraristote <quentin.aristote@irif.fr>2023-05-02 15:04:18 +0200
commitb2490bae8698748d471add8e31bf412b32abaac7 (patch)
tree3bbf538f27e160fb74e9384210ff1205dde9d7d9
parentb84b936b66cb2db45e375ea45f805b9f32ea10b1 (diff)
home: identities: debug viewer
-rw-r--r--modules/home-manager/personal/identities.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/home-manager/personal/identities.nix b/modules/home-manager/personal/identities.nix
index a3b0f55..99ec5f9 100644
--- a/modules/home-manager/personal/identities.nix
+++ b/modules/home-manager/personal/identities.nix
@@ -19,7 +19,7 @@ in {
"mail.identity.id_${id}.fcc_folder_picker_mode" = 0;
};
in {
- personal = lib.mkIf config.personal.identities.personal {
+ personal = lib.mkIf cfg.personal {
inherit gpg;
address = "quentin@aristote.fr";
userName = "quentin@aristote.fr";
@@ -53,7 +53,7 @@ in {
};
};
};
- work = lib.mkIf config.personal.identities.work {
+ work = lib.mkIf cfg.work {
inherit gpg;
address = "quentin.aristote@irif.fr";
userName = "aristote";
@@ -90,7 +90,7 @@ in {
home = lib.mkIf cfg.work {
packages = with pkgs; [ zotero evince ];
- shellAliases.VIEWER = "evince";
+ sessionVariables.VIEWER = "evince";
};
};
}