Remove fixed uid in tests

This commit is contained in:
Eelco Dolstra 2015-05-13 16:23:57 +02:00
parent fc8011ad8d
commit 15ffb9ad88

View File

@ -1,10 +1,9 @@
{ pkgs, ... }: { lib, ... }:
{ users.extraUsers = pkgs.lib.singleton { users.extraUsers = lib.singleton
{ isNormalUser = true; { isNormalUser = true;
name = "alice"; name = "alice";
description = "Alice Foobar"; description = "Alice Foobar";
password = "foobar"; password = "foobar";
uid = 1000;
}; };
} }