diff --git a/CHANGELOG b/CHANGELOG
index 18b6e6b..1675b3e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-2020-12-30
+2021-01-16
- Added `homebrew` module, to manage formulas installed by Homebrew via `brew bundle`.
2020-10-25
diff --git a/modules/homebrew.nix b/modules/homebrew.nix
index 5088f3c..c3524d9 100644
--- a/modules/homebrew.nix
+++ b/modules/homebrew.nix
@@ -81,32 +81,32 @@ in
};
global.brewfile = mkOption {
- type = types.bool;
- default = false;
- description = ''
- When enabled, when you manually invoke brew bundle, it will
- automatically use the Brewfile in the Nix store that this module generates.
+ type = types.bool;
+ default = false;
+ description = ''
+ When enabled, when you manually invoke brew bundle, it will automatically
+ use the Brewfile in the Nix store that this module generates.
- Sets the HOMEBREW_BUNDLE_FILE environment variable to the path of the
- Brewfile in the Nix store that this module generates, by adding it to
- .
- '';
- };
+ Sets the HOMEBREW_BUNDLE_FILE environment variable to the path of the
+ Brewfile in the Nix store that this module generates, by adding it to
+ .
+ '';
+ };
- global.noLock = mkOption {
- type = types.bool;
- default = false;
- description = ''
- When enabled, lockfiles aren't generated when you manually invoke
- brew bundle [install]. This is often desirable when
- is enabled, since
- brew bundle [install] will try to write the lockfile in the Nix store,
- and complain that it can't (though the command will run successfully regardless).
+ global.noLock = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ When enabled, lockfiles aren't generated when you manually invoke
+ brew bundle [install]. This is often desirable when
+ is enabled, since
+ brew bundle [install] will try to write the lockfile in the Nix store,
+ and complain that it can't (though the command will run successfully regardless).
- Sets the HOMEBREW_BUNDLE_NO_LOCK environment variable, by adding it to
- .
- '';
- };
+ Sets the HOMEBREW_BUNDLE_NO_LOCK environment variable, by adding it to
+ .
+ '';
+ };
taps = mkOption {
type = with types; listOf str;