devos/users/nrd.nix

25 lines
360 B
Nix
Raw Normal View History

2019-12-15 08:06:28 +01:00
{ lib, ... }:
let
inherit (lib)
fileContents
;
in
{
imports = [
../profiles/develop
];
users.users.nrd = {
uid = 1000;
description = "Timothy DeHerrera";
isNormalUser = true;
hashedPassword = fileContents ../secrets/nrd;
extraGroups = [
"wheel"
"input"
"networkmanager"
"adbusers"
];
};
}