summaryrefslogtreecommitdiff
path: root/modules/home-manager
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2025-03-10 11:09:48 +0100
committerquentin@aristote.fr <quentin@aristote.fr>2025-03-10 11:20:32 +0100
commite63906e640104a50cdc1bdd287538e130d46f4bd (patch)
tree15cfd3f08de3e9caa69e3ac8685e8cdceb0ed136 /modules/home-manager
parent29324c0cd6440382616f6fd84aa82f72484de7a5 (diff)
home: work: disable zulip in personal profile
Diffstat (limited to 'modules/home-manager')
-rw-r--r--modules/home-manager/personal/identities.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/home-manager/personal/identities.nix b/modules/home-manager/personal/identities.nix
index 51288b6..859fc8b 100644
--- a/modules/home-manager/personal/identities.nix
+++ b/modules/home-manager/personal/identities.nix
@@ -90,7 +90,7 @@ in {
}
(lib.mkIf cfg.work {
home = {
- packages = with pkgs; [zotero evince zulip];
+ packages = with pkgs; [zotero evince] ++ lib.optional (!cfg.personal) zulip;
file.".latexmkrc".source =
lib.mkDefault config.personal.home.dotfiles.latexmkrc;
};