From e429a60900c1c8f6c07bbd4926b79f05a98544c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Tue, 2 Apr 2024 17:20:03 +0200 Subject: [PATCH] bacon: add default value for settings Currently you need to specify the settings if you want to use bacon, but the empty settings works and is the default upstream: - - [default `prefs.toml`][1] [1] https://raw.githubusercontent.com/Canop/bacon/main/defaults/default-prefs.toml --- modules/programs/bacon.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/programs/bacon.nix b/modules/programs/bacon.nix index 8253c4e5..a24d9ffe 100644 --- a/modules/programs/bacon.nix +++ b/modules/programs/bacon.nix @@ -17,6 +17,7 @@ in { settings = mkOption { type = settingsFormat.type; + default = { }; example = { jobs.default = { command = [ "cargo" "build" "--all-features" "--color" "always" ];