From ee9b95554511bf3d33442aafa03dbd679b6ed496 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Tue, 4 Sep 2018 13:19:30 +0200 Subject: [PATCH] steveej-laptop: add another user for testing --- nixos-configuration/steveej-laptop/user.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos-configuration/steveej-laptop/user.nix b/nixos-configuration/steveej-laptop/user.nix index 9cab86b..6d53acd 100644 --- a/nixos-configuration/steveej-laptop/user.nix +++ b/nixos-configuration/steveej-laptop/user.nix @@ -41,6 +41,11 @@ in hashedPassword = passwords.users.steveej2; }; + users.extraUsers.steveej3 = mkUser { + uid = 1002; + hashedPassword = passwords.users.steveej; + }; + security.pam.enableU2F = true; security.pam.services.steveej.u2fAuth = true; }