diff --git a/modules/programs/bacon.nix b/modules/programs/bacon.nix index 17e89d86..930200f0 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; }; }; }