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;
name = "alice";
description = "Alice Foobar";
password = "foobar";
uid = 1000;
};
}