From acc906d9824992443566e826f358b9ef943c3468 Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Sat, 16 Jan 2021 12:39:01 -0800 Subject: [PATCH] Update changelog and fix indentation. --- CHANGELOG | 2 +- modules/homebrew.nix | 46 ++++++++++++++++++++++---------------------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 18b6e6be..1675b3e0 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 5088f3c2..c3524d9f 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;