pub-solar-os/users/nrd.nix
2019-12-15 00:06:28 -07:00

25 lines
360 B
Nix

{ 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"
];
};
}