lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Manual: Remove store path references

+30 -20
+3 -2
nixos/modules/config/shells-environment.nix
··· 57 57 type = types.attrsOf (types.listOf types.str); 58 58 example = { PATH = [ "/bin" "/sbin" ]; MANPATH = [ "/man" "/share/man" ]; }; 59 59 description = '' 60 - Attribute set of environment variable. Each attribute maps to a list 61 - of relative paths. Each relative path is appended to the each profile 60 + Attribute set of environment variable. Each attribute maps to a list 61 + of relative paths. Each relative path is appended to the each profile 62 62 of <option>environment.profiles</option> to form the content of the 63 63 corresponding environment variable. 64 64 ''; ··· 123 123 "''${pkgs.dash}/bin/dash" 124 124 ''; 125 125 type = types.path; 126 + visible = false; 126 127 description = '' 127 128 The shell executable that is linked system-wide to 128 129 <literal>/bin/sh</literal>. Please note that NixOS assumes all
+2 -1
nixos/modules/programs/ssh.nix
··· 36 36 37 37 askPassword = mkOption { 38 38 type = types.str; 39 - default = "${pkgs.x11_ssh_askpass}/libexec/x11-ssh-askpass"; 40 39 description = ''Program used by SSH to ask for passwords.''; 41 40 }; 42 41 ··· 222 221 '' 223 222 export SSH_ASKPASS=${askPassword} 224 223 ''; 224 + 225 + programs.ssh.askPassword = mkDefault "${pkgs.x11_ssh_askpass}/libexec/x11-ssh-askpass"; 225 226 226 227 }; 227 228 }
+2 -1
nixos/modules/programs/venus.nix
··· 99 99 }; 100 100 101 101 outputTheme = mkOption { 102 - default = "${pkgs.venus}/themes/classic_fancy"; 103 102 type = types.path; 104 103 description = '' 105 104 Directory containing a config.ini file which is merged with this one. ··· 169 168 environment.SSL_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt"; 170 169 startAt = cfg.dates; 171 170 }; 171 + 172 + services.venus.outputTheme = mkDefault "${pkgs.venus}/themes/classic_fancy"; 172 173 173 174 }; 174 175 }
+2 -1
nixos/modules/services/amqp/activemq/default.nix
··· 32 32 ''; 33 33 }; 34 34 configurationDir = mkOption { 35 - default = "${activemq}/conf"; 36 35 description = '' 37 36 The base directory for ActiveMQ's configuration. 38 37 By default, this directory is searched for a file named activemq.xml, ··· 125 124 ${cfg.extraJavaOptions} ActiveMQBroker "${cfg.configurationURI}" 126 125 ''; 127 126 }; 127 + 128 + services.activemq.configurationDir = mkDefault "${activemq}/conf"; 128 129 129 130 }; 130 131
+2 -1
nixos/modules/services/hardware/sane.nix
··· 36 36 37 37 hardware.sane.configDir = mkOption { 38 38 type = types.string; 39 - default = "${saneConfig}/etc/sane.d"; 40 39 description = "The value of SANE_CONFIG_DIR."; 41 40 }; 42 41 ··· 46 45 ###### implementation 47 46 48 47 config = mkIf config.hardware.sane.enable { 48 + 49 + hardware.sane.configDir = mkDefault "${saneConfig}/etc/sane.d"; 49 50 50 51 environment.systemPackages = backends; 51 52 environment.sessionVariables = {
+2 -2
nixos/modules/services/logging/logstash.nix
··· 84 84 type = types.lines; 85 85 default = ''stdin { type => "example" }''; 86 86 description = "Logstash input configuration."; 87 - example = '' 87 + example = literalExample '' 88 88 # Read from journal 89 89 pipe { 90 - command => "${pkgs.systemd}/bin/journalctl -f -o json" 90 + command => "''${pkgs.systemd}/bin/journalctl -f -o json" 91 91 type => "syslog" codec => json {} 92 92 } 93 93 '';
+2 -1
nixos/modules/services/misc/nixos-manual.nix
··· 80 80 81 81 services.nixosManual.browser = mkOption { 82 82 type = types.path; 83 - default = "${pkgs.w3m}/bin/w3m"; 84 83 description = '' 85 84 Browser used to show the manual. 86 85 ''; ··· 115 114 116 115 services.mingetty.helpLine = mkIf cfg.showManual 117 116 "\nPress <Alt-F${toString cfg.ttyNumber}> for the NixOS manual."; 117 + 118 + services.nixosManual.browser = mkDefault "${pkgs.w3m}/bin/w3m"; 118 119 119 120 }; 120 121
+3 -1
nixos/modules/services/misc/subsonic.nix
··· 97 97 98 98 transcoders = mkOption { 99 99 type = types.listOf types.path; 100 - default = [ "${pkgs.ffmpeg}/bin/ffmpeg" ]; 101 100 description = '' 102 101 List of paths to transcoder executables that should be accessible 103 102 from Subsonic. Symlinks will be created to each executable inside ··· 153 152 }; 154 153 155 154 users.extraGroups.subsonic.gid = config.ids.gids.subsonic; 155 + 156 + services.subsonic.transcoders = mkDefault [ "${pkgs.ffmpeg}/bin/ffmpeg" ]; 157 + 156 158 }; 157 159 }
+4 -2
nixos/modules/services/monitoring/grafana.nix
··· 200 200 201 201 staticRootPath = mkOption { 202 202 description = "Root path for static assets."; 203 - default = "${cfg.package.out}/share/go/src/github.com/grafana/grafana/public"; 204 203 type = types.str; 205 204 }; 206 205 ··· 311 310 312 311 config = mkIf cfg.enable { 313 312 warnings = [ 314 - "Grafana passwords will be stored as plaintext in nix store!" 313 + "Grafana passwords will be stored as plaintext in the Nix store!" 315 314 ]; 316 315 317 316 systemd.services.grafana = { ··· 331 330 home = cfg.dataDir; 332 331 createHome = true; 333 332 }; 333 + 334 + services.grafana.staticRootPath = mkDefault "${cfg.package.out}/share/go/src/github.com/grafana/grafana/public"; 335 + 334 336 }; 335 337 }
+1 -4
nixos/modules/services/networking/dnscrypt-proxy.nix
··· 52 52 default = "opendns"; 53 53 type = types.nullOr types.string; 54 54 description = '' 55 - The name of the upstream DNSCrypt resolver to use. See 56 - <literal>${resolverListFile}</literal> for alternative resolvers 57 - (e.g., if you are concerned about logging and/or server 58 - location). 55 + The name of the upstream DNSCrypt resolver to use. 59 56 ''; 60 57 }; 61 58 customResolver = mkOption {
+1 -1
nixos/modules/services/networking/seeks.nix
··· 33 33 type = types.str; 34 34 description = " 35 35 The Seeks server configuration. If it is not specified, 36 - a default configuration is used (${seeks}/etc/seeks). 36 + a default configuration is used. 37 37 "; 38 38 }; 39 39
+3 -2
nixos/modules/services/web-servers/phpfpm.nix
··· 44 44 45 45 phpIni = mkOption { 46 46 type = types.path; 47 - default = "${cfg.phpPackage}/etc/php-recommended.ini"; 48 - description = "php.ini file to use."; 47 + description = "PHP configuration file to use."; 49 48 }; 50 49 51 50 poolConfigs = mkOption { ··· 85 84 PIDFile = pidFile; 86 85 }; 87 86 }; 87 + 88 + services.phpfpm.phpIni = mkDefault "${cfg.phpPackage}/etc/php-recommended.ini"; 88 89 89 90 }; 90 91 }
+3 -1
nixos/modules/services/x11/display-managers/lightdm.nix
··· 104 104 }; 105 105 106 106 background = mkOption { 107 - default = "${pkgs.nixos-artwork}/share/artwork/gnome/Gnome_Dark.png"; 108 107 description = '' 109 108 The background image or color to use. 110 109 ''; ··· 172 171 }; 173 172 174 173 users.extraGroups.lightdm.gid = config.ids.gids.lightdm; 174 + 175 + services.xserver.displayManager.lightdm.background = mkDefault "${pkgs.nixos-artwork}/share/artwork/gnome/Gnome_Dark.png"; 176 + 175 177 }; 176 178 }