From 8a31f71d80fa8c5b35ad8a3cd6edfde55fc6c78e Mon Sep 17 00:00:00 2001 From: imxyy_soope_ Date: Thu, 12 Feb 2026 09:05:33 +0800 Subject: [PATCH] chore(zen): xdg migration --- modules/desktop/browser/zen.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/desktop/browser/zen.nix b/modules/desktop/browser/zen.nix index 65221fb..b00993b 100644 --- a/modules/desktop/browser/zen.nix +++ b/modules/desktop/browser/zen.nix @@ -2,6 +2,7 @@ config, lib, pkgs, + hostname, ... }: let @@ -16,6 +17,7 @@ in my.hm.programs.zen-browser = { enable = true; nativeMessagingHosts = [ pkgs.firefoxpwa ]; + suppressXdgMigrationWarning = hostname == "imxyy-nix"; policies = { # find more options here: https://mozilla.github.io/policy-templates/ DisableAppUpdate = true; @@ -23,7 +25,7 @@ in }; }; my.persist.homeDirs = [ - ".zen" + ".config/zen" ]; }; }