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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4c45878a30ed
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f8d70be9036f
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 8, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    brainrake Márton Boros
    Copy the full SHA
    76506ae View commit details
  2. Copy the full SHA
    0319241 View commit details

Commits on Jan 9, 2020

  1. Merge pull request #77344 from bachp/fix-empty-usernames

    nixos/matrix-synapse, nixos/mxisd: fix empty usernames
    worldofpeace authored Jan 9, 2020
    Copy the full SHA
    f8d70be View commit details
Showing with 1 addition and 3 deletions.
  1. +1 −2 nixos/modules/services/misc/matrix-synapse.nix
  2. +0 −1 nixos/modules/services/networking/mxisd.nix
3 changes: 1 addition & 2 deletions nixos/modules/services/misc/matrix-synapse.nix
Original file line number Diff line number Diff line change
@@ -657,8 +657,7 @@ in {
};

config = mkIf cfg.enable {
users.users.matrix-synapse =
{ name = "";
users.users.matrix-synapse = {
group = "matrix-synapse";
home = cfg.dataDir;
createHome = true;
1 change: 0 additions & 1 deletion nixos/modules/services/networking/mxisd.nix
Original file line number Diff line number Diff line change
@@ -104,7 +104,6 @@ in {

users.groups.mxisd =
{
name = "";
gid = config.ids.gids.mxisd;
};