Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: fb9f5e4a0322
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 67a8c66f68d9
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 10, 2018

  1. nixos/dovecot: Fix usage of dhparams option

    The pull request that added dhparams (#39507) was made at the time where
    the dhparams module overhaul (#39526) wasn't done yet, so it's still
    using the old mechanics of the module.
    
    As stated in the release notes:
    
      Module implementers should not set a specific bit size in order to let
      users configure it by themselves if they want to have a different bit
      size than the default (2048).
    
      An example usage of this would be:
    
        { config, ... }:
    
        {
          security.dhparams.params.myservice = {};
          environment.etc."myservice.conf".text = ''
            dhparams = ${config.security.dhparams.params.myservice.path}
          '';
        }
    
    Signed-off-by: aszlig <aszlig@nix.build>
    Cc: @qknight, @abbradar, @hrdinka, @leenaars
    aszlig committed May 10, 2018
    Configuration menu
    Copy the full SHA
    67a8c66 View commit details
    Browse the repository at this point in the history