1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 00:18:30 +02:00

news: minor cleanup

This puts entries in chronological order and adds a comment describing
how to get a suitable time stamp.
This commit is contained in:
Robert Helgesson 2017-09-12 18:08:44 +02:00
parent 6a8e8e92a7
commit f47084968d
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86

View File

@ -106,35 +106,13 @@ in
};
config = {
# Add news entries in chronological order (i.e., latest time
# should be at the bottom of the list). The time should be
# formatted as given in the output of
#
# date --iso-8601=second --universal
#
news.entries = [
{
time = "2017-09-12T14:22:18+00:00";
message = ''
A new service is available: 'services.blueman-applet'.
'';
}
{
time = "2017-09-12T13:11:48+00:00";
condition = (
config.programs.zsh.enable &&
config.programs.zsh.shellAliases != {}
);
message = ''
Aliases defined in 'programs.zsh.shellAliases'
are now have the highest priority. Such aliases will
not be redefined by the code in 'programs.zsh.initExtra'
or any external plugins.
'';
}
{
time = "2017-09-10T22:15:19+00:00";
condition = config.programs.zsh.enable;
message = ''
Home Manager now offers its own minimal zsh plugin manager
under the 'programs.zsh.plugins' option path. By statically
sourcing your plugins it achieves no startup overhead.
'';
}
{
time = "2017-09-01T10:56:28+00:00";
message = ''
@ -169,6 +147,37 @@ in
by commenting in https://git.io/v5BJL.
'';
}
{
time = "2017-09-10T22:15:19+00:00";
condition = config.programs.zsh.enable;
message = ''
Home Manager now offers its own minimal zsh plugin manager
under the 'programs.zsh.plugins' option path. By statically
sourcing your plugins it achieves no startup overhead.
'';
}
{
time = "2017-09-12T13:11:48+00:00";
condition = (
config.programs.zsh.enable &&
config.programs.zsh.shellAliases != {}
);
message = ''
Aliases defined in 'programs.zsh.shellAliases'
are now have the highest priority. Such aliases will
not be redefined by the code in 'programs.zsh.initExtra'
or any external plugins.
'';
}
{
time = "2017-09-12T14:22:18+00:00";
message = ''
A new service is available: 'services.blueman-applet'.
'';
}
];
};
}