From c74665abd6e4e37d3140e68885bc49a994ffa53c Mon Sep 17 00:00:00 2001 From: awwpotato Date: Sun, 11 May 2025 17:29:02 -0700 Subject: [PATCH] bacon: add prefs location to settings decription (#7030) --- modules/programs/bacon.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/programs/bacon.nix b/modules/programs/bacon.nix index 17e89d861..930200f0c 100644 --- a/modules/programs/bacon.nix +++ b/modules/programs/bacon.nix @@ -41,7 +41,8 @@ in }; }; description = '' - Bacon configuration. + Bacon configuration written to either {file}`Library/Application Support/org.dystroy.bacon/prefs.toml` + (darwin) or {file}`$XDG_CONFIG_HOME/bacon/prefs.toml`. For available settings see . ''; }; @@ -51,7 +52,7 @@ in home.packages = lib.mkIf (cfg.package != null) [ cfg.package ]; home.file."${configDir}/prefs.toml" = lib.mkIf (cfg.settings != { }) { - source = settingsFormat.generate "prefs.toml" cfg.settings; + source = settingsFormat.generate "bacon-prefs" cfg.settings; }; }; }