Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3f8ac3f78d42
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cb7d0d226ebb
Choose a head ref

Commits on Aug 29, 2019

  1. starship: 0.12.0 -> 0.13.1

    bbigras committed Aug 29, 2019
    Copy the full SHA
    56d001a View commit details
  2. citrix_workspace: add 1908 (citrix_workspace_19_8_0)

    New release:
    https://www.citrix.de/downloads/workspace-app/linux/workspace-app-for-linux-latest.html
    (unfortunately there's no version-specific link for the latest version).
    
    Also added `preferLocalBuild = true;` to the derivation, due to
    `requireFile` you have to build it yourself anyway, however I use
    distributed builds by default and figured that this shouldn't be needed
    since the longest part of the build would be the upload of the source
    archive in that case.
    Ma27 committed Aug 29, 2019
    Copy the full SHA
    87f818d View commit details

Commits on Aug 30, 2019

  1. libhandy: 0.0.10. -> 0.0.11

    craigem committed Aug 30, 2019
    Copy the full SHA
    d2512c1 View commit details
  2. nfs-utils: 2.3.4 -> 2.4.1

    Averell Dalton committed Aug 30, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    366db82 View commit details
  3. yq-go: init at 2.4.0

    nlewo committed Aug 30, 2019
    Copy the full SHA
    984acf8 View commit details
  4. firefox-bin: add maintainer

    taku0 committed Aug 30, 2019
    Copy the full SHA
    a278d1d View commit details
  5. Merge pull request #67715 from Ma27/citrix-workspace-1908

    citrix_workspace: add 1908 (`citrix_workspace_19_8_0`)
    aanderse authored Aug 30, 2019
    Copy the full SHA
    88c3f36 View commit details
  6. Merge pull request #67333 from nlewo/pr-yq-go

    yq-go: init at 2.4.0
    mmahut authored Aug 30, 2019
    Copy the full SHA
    65f7fa4 View commit details
  7. Merge pull request #67739 from craigem/bump_libhandy_to_0.0.11

    libhandy: 0.0.10. -> 0.0.11
    jagajaga authored Aug 30, 2019
    Copy the full SHA
    f25377c View commit details
  8. Merge pull request #67712 from bbigras/starship

    starship: 0.12.0 -> 0.13.1
    aanderse authored Aug 30, 2019
    Copy the full SHA
    9c46c35 View commit details
  9. python-HyperKitty: initial version 1.2.2

    Package the mail archiver for GNU Mailman. I liberally borrowed code
    from @globin's repository [1].
    
    [1] https://github.com/mayflower/nixexprs/tree/master/pkgs/python
    peti committed Aug 30, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1319109 View commit details
  10. Copy the full SHA
    ad53091 View commit details
  11. Copy the full SHA
    786804a View commit details
  12. Copy the full SHA
    8c7c189 View commit details
  13. nixos/mailman: cosmetic

    peti committed Aug 30, 2019
    Copy the full SHA
    5a81797 View commit details
  14. Copy the full SHA
    28dee92 View commit details
  15. Merge pull request #67718 from eadwu/nixUnstable/2.3pre6779_31f5ecf

    nix{Flakes,Unstable}/update-1
    edolstra authored Aug 30, 2019
    Copy the full SHA
    e6ab68b View commit details
  16. Merge pull request #67741 from averelld/nfs-utils-upgrade

    nfs-utils: 2.3.4 -> 2.4.1
    mmahut authored Aug 30, 2019
    Copy the full SHA
    fd01dc5 View commit details
  17. Merge pull request #67756 from taku0/firefox-bin-add-maintainer

    firefox-bin: add maintainer
    adisbladis authored Aug 30, 2019
    Copy the full SHA
    371f741 View commit details
  18. Copy the full SHA
    c205c66 View commit details
  19. Copy the full SHA
    cb7d0d2 View commit details
6 changes: 6 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -139,3 +139,9 @@

# Bazel
/pkgs/development/tools/build-managers/bazel @mboes @Profpatsch

# NixOS modules for e-mail and dns services
/nixos/modules/services/mail/mailman.nix @peti
/nixos/modules/services/mail/postfix.nix @peti
/nixos/modules/services/networking/bind.nix @peti
/nixos/modules/services/mail/rspamd.nix @peti
19 changes: 5 additions & 14 deletions nixos/modules/services/databases/redis.nix
Original file line number Diff line number Diff line change
@@ -224,26 +224,17 @@ in

environment.systemPackages = [ cfg.package ];

systemd.services.redis_init =
{ description = "Redis Server Initialisation";

wantedBy = [ "redis.service" ];
before = [ "redis.service" ];

serviceConfig.Type = "oneshot";

script = ''
install -d -m0700 -o ${cfg.user} ${cfg.dbpath}
chown -R ${cfg.user} ${cfg.dbpath}
'';
};

systemd.services.redis =
{ description = "Redis Server";

wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];

preStart = ''
install -d -m0700 -o ${cfg.user} ${cfg.dbpath}
chown -R ${cfg.user} ${cfg.dbpath}
'';

serviceConfig = {
ExecStart = "${cfg.package}/bin/redis-server ${redisConfig}";
User = cfg.user;
1 change: 0 additions & 1 deletion nixos/modules/services/mail/mailman.nix
Original file line number Diff line number Diff line change
@@ -112,7 +112,6 @@ in {
RuntimeDirectory = "mailman";
PIDFile = "/run/mailman/master.pid";
};

};

};
Loading