···154154 variables as parameters.
155155 </para>
156156 </listitem>
157157+ <listitem>
158158+ <para>
159159+ <literal>services.firefox.syncserver</literal> now runs by default as a
160160+ non-root user. To accomodate this change, the default sqlite database
161161+ location has also been changed. Migration should work automatically.
162162+ Refer to the description of the options for more details.
163163+ </para>
164164+ </listitem>
157165</itemizedlist>
158166159167<para>Other notable improvements:</para>
+16
nixos/modules/programs/oblogout.nix
···2727 type = types.int;
2828 default = 70;
2929 description = ''
3030+ Opacity percentage of Cairo rendered backgrounds.
3031 '';
3132 };
3233···3435 type = types.str;
3536 default = "black";
3637 description = ''
3838+ Colour name or hex code (#ffffff) of the background color.
3739 '';
3840 };
3941···4143 type = types.str;
4244 default = "simplistic";
4345 description = ''
4646+ Icon theme for the buttons, must be in the themes folder of
4747+ the package, or in
4848+ <filename>~/.themes/<name>/oblogout/</filename>.
4449 '';
4550 };
4651···4853 type = types.str;
4954 default = "cancel, logout, restart, shutdown, suspend, hibernate";
5055 description = ''
5656+ List and order of buttons to show.
5157 '';
5258 };
5359···5561 type = types.str;
5662 default = "Escape";
5763 description = ''
6464+ Cancel logout/shutdown shortcut.
5865 '';
5966 };
6067···6269 type = types.str;
6370 default = "S";
6471 description = ''
7272+ Shutdown shortcut.
6573 '';
6674 };
6775···6977 type = types.str;
7078 default = "R";
7179 description = ''
8080+ Restart shortcut.
7281 '';
7382 };
7483···7685 type = types.str;
7786 default = "U";
7887 description = ''
8888+ Suspend shortcut.
7989 '';
8090 };
8191···8393 type = types.str;
8494 default = "L";
8595 description = ''
9696+ Logout shortcut.
8697 '';
8798 };
8899···90101 type = types.str;
91102 default = "K";
92103 description = ''
104104+ Lock session shortcut.
93105 '';
94106 };
95107···97109 type = types.str;
98110 default = "H";
99111 description = ''
112112+ Hibernate shortcut.
100113 '';
101114 };
102115···104117 type = types.str;
105118 default = "openbox --exit";
106119 description = ''
120120+ Command to logout.
107121 '';
108122 };
109123···111125 type = types.str;
112126 default = "";
113127 description = ''
128128+ Command to lock screen.
114129 '';
115130 };
116131···118133 type = types.str;
119134 default = "";
120135 description = ''
136136+ Command to switch user.
121137 '';
122138 };
123139 };
+5-5
nixos/modules/programs/zsh/zsh.nix
···158158159159 HELPDIR="${pkgs.zsh}/share/zsh/$ZSH_VERSION/help"
160160161161+ # Tell zsh how to find installed completions
162162+ for p in ''${(z)NIX_PROFILES}; do
163163+ fpath+=($p/share/zsh/site-functions $p/share/zsh/$ZSH_VERSION/functions $p/share/zsh/vendor-completions)
164164+ done
165165+161166 ${optionalString cfg.enableCompletion "autoload -U compinit && compinit"}
162167163168 ${optionalString (cfg.enableAutosuggestions)
···171176 ${cfg.interactiveShellInit}
172177173178 ${cfg.promptInit}
174174-175175- # Tell zsh how to find installed completions
176176- for p in ''${(z)NIX_PROFILES}; do
177177- fpath+=($p/share/zsh/site-functions $p/share/zsh/$ZSH_VERSION/functions $p/share/zsh/vendor-completions)
178178- done
179179180180 # Read system-wide modifications.
181181 if test -f /etc/zshrc.local; then
···10101111buildPythonPackage rec {
1212 pname = "linode-api";
1313- version = "4.1.1b2"; # NOTE: this is a beta, and the API may change in future versions.
1313+ version = "4.1.2b0"; # NOTE: this is a beta, and the API may change in future versions.
1414 name = "${pname}-${version}";
15151616 disabled = (pythonOlder "2.7");
···26262727 src = fetchPypi {
2828 inherit pname version;
2929- sha256 = "1lfqsll3wv1wzn98ymmcbw0yawj8ab3mxniws6kaxf99jd4a0xp4";
2929+ sha256 = "19yzyb4sbxib8yxmrqm6d8i0fm8cims56q7kiq2ana26nbcm0gr4";
3030 };
31313232 meta = {