aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/home-manager/modules/misc/news.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/home-manager/modules/misc/news.nix')
-rw-r--r--infra/libkookie/home-manager/modules/misc/news.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/infra/libkookie/home-manager/modules/misc/news.nix b/infra/libkookie/home-manager/modules/misc/news.nix
index 0791c0fd9212..301136441b21 100644
--- a/infra/libkookie/home-manager/modules/misc/news.nix
+++ b/infra/libkookie/home-manager/modules/misc/news.nix
@@ -1852,6 +1852,34 @@ in
A new module is available: 'programs.sbt'.
'';
}
+
+ {
+ time = "2021-02-20T00:00:00+00:00";
+ condition = config.services.polybar.enable;
+ message = ''
+ The polybar configuration can now be written in a more nix-friendly format.
+ The new 'services.polybar.settings' option is an alternative to
+ 'services.polybar.config' that supports nested keys and converts nix
+ lists to polybar-style 'foo-0, foo-1, ...' lists.
+ '';
+ }
+ {
+ time = "2021-02-25T22:36:43+00:00";
+ condition = config.programs.git.enable && any (msmtp: msmtp.enable)
+ (mapAttrsToList (name: account: account.msmtp)
+ config.accounts.email.accounts);
+ message = ''
+ Git will now defer to msmtp for sending emails if
+ 'accounts.email.accounts.<name>.msmtp.enable' is true.
+ '';
+ }
+ {
+ time = "2021-03-03T22:16:05+00:00";
+ message = ''
+ Home Manager now respects the 'NO_COLOR' environment variable as per
+ https://no-color.org/.
+ '';
+ }
];
};
}