···5757 type = types.attrsOf (types.listOf types.str);
5858 example = { PATH = [ "/bin" "/sbin" ]; MANPATH = [ "/man" "/share/man" ]; };
5959 description = ''
6060- Attribute set of environment variable. Each attribute maps to a list
6161- of relative paths. Each relative path is appended to the each profile
6060+ Attribute set of environment variable. Each attribute maps to a list
6161+ of relative paths. Each relative path is appended to the each profile
6262 of <option>environment.profiles</option> to form the content of the
6363 corresponding environment variable.
6464 '';
···123123 "''${pkgs.dash}/bin/dash"
124124 '';
125125 type = types.path;
126126+ visible = false;
126127 description = ''
127128 The shell executable that is linked system-wide to
128129 <literal>/bin/sh</literal>. Please note that NixOS assumes all
+2-1
nixos/modules/programs/ssh.nix
···36363737 askPassword = mkOption {
3838 type = types.str;
3939- default = "${pkgs.x11_ssh_askpass}/libexec/x11-ssh-askpass";
4039 description = ''Program used by SSH to ask for passwords.'';
4140 };
4241···222221 ''
223222 export SSH_ASKPASS=${askPassword}
224223 '';
224224+225225+ programs.ssh.askPassword = mkDefault "${pkgs.x11_ssh_askpass}/libexec/x11-ssh-askpass";
225226226227 };
227228}
+2-1
nixos/modules/programs/venus.nix
···9999 };
100100101101 outputTheme = mkOption {
102102- default = "${pkgs.venus}/themes/classic_fancy";
103102 type = types.path;
104103 description = ''
105104 Directory containing a config.ini file which is merged with this one.
···169168 environment.SSL_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt";
170169 startAt = cfg.dates;
171170 };
171171+172172+ services.venus.outputTheme = mkDefault "${pkgs.venus}/themes/classic_fancy";
172173173174 };
174175}
+2-1
nixos/modules/services/amqp/activemq/default.nix
···3232 '';
3333 };
3434 configurationDir = mkOption {
3535- default = "${activemq}/conf";
3635 description = ''
3736 The base directory for ActiveMQ's configuration.
3837 By default, this directory is searched for a file named activemq.xml,
···125124 ${cfg.extraJavaOptions} ActiveMQBroker "${cfg.configurationURI}"
126125 '';
127126 };
127127+128128+ services.activemq.configurationDir = mkDefault "${activemq}/conf";
128129129130 };
130131
···80808181 services.nixosManual.browser = mkOption {
8282 type = types.path;
8383- default = "${pkgs.w3m}/bin/w3m";
8483 description = ''
8584 Browser used to show the manual.
8685 '';
···115114116115 services.mingetty.helpLine = mkIf cfg.showManual
117116 "\nPress <Alt-F${toString cfg.ttyNumber}> for the NixOS manual.";
117117+118118+ services.nixosManual.browser = mkDefault "${pkgs.w3m}/bin/w3m";
118119119120 };
120121
+3-1
nixos/modules/services/misc/subsonic.nix
···97979898 transcoders = mkOption {
9999 type = types.listOf types.path;
100100- default = [ "${pkgs.ffmpeg}/bin/ffmpeg" ];
101100 description = ''
102101 List of paths to transcoder executables that should be accessible
103102 from Subsonic. Symlinks will be created to each executable inside
···153152 };
154153155154 users.extraGroups.subsonic.gid = config.ids.gids.subsonic;
155155+156156+ services.subsonic.transcoders = mkDefault [ "${pkgs.ffmpeg}/bin/ffmpeg" ];
157157+156158 };
157159}
+4-2
nixos/modules/services/monitoring/grafana.nix
···200200201201 staticRootPath = mkOption {
202202 description = "Root path for static assets.";
203203- default = "${cfg.package.out}/share/go/src/github.com/grafana/grafana/public";
204203 type = types.str;
205204 };
206205···311310312311 config = mkIf cfg.enable {
313312 warnings = [
314314- "Grafana passwords will be stored as plaintext in nix store!"
313313+ "Grafana passwords will be stored as plaintext in the Nix store!"
315314 ];
316315317316 systemd.services.grafana = {
···331330 home = cfg.dataDir;
332331 createHome = true;
333332 };
333333+334334+ services.grafana.staticRootPath = mkDefault "${cfg.package.out}/share/go/src/github.com/grafana/grafana/public";
335335+334336 };
335337}
···5252 default = "opendns";
5353 type = types.nullOr types.string;
5454 description = ''
5555- The name of the upstream DNSCrypt resolver to use. See
5656- <literal>${resolverListFile}</literal> for alternative resolvers
5757- (e.g., if you are concerned about logging and/or server
5858- location).
5555+ The name of the upstream DNSCrypt resolver to use.
5956 '';
6057 };
6158 customResolver = mkOption {
+1-1
nixos/modules/services/networking/seeks.nix
···3333 type = types.str;
3434 description = "
3535 The Seeks server configuration. If it is not specified,
3636- a default configuration is used (${seeks}/etc/seeks).
3636+ a default configuration is used.
3737 ";
3838 };
3939