mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 05:02:10 -08:00
14 lines
297 B
Nix
14 lines
297 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
users.users.youwen = {
|
||
|
isNormalUser = true;
|
||
|
description = "Youwen Wu";
|
||
|
extraGroups = [
|
||
|
"networkmanager"
|
||
|
"wheel"
|
||
|
];
|
||
|
shell = pkgs.fish;
|
||
|
initialHashedPassword = "$y$j9T$v0OkEeCntj8KwgPJQxyWx0$dx8WtFDYgZZ8WE3FWetWwRfutjQkznRuJ0IG3LLAtP2";
|
||
|
};
|
||
|
}
|