15 lines
313 B
Nix
15 lines
313 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
users.users = {
|
||
|
viator = {
|
||
|
isNormalUser = true;
|
||
|
description = "Viator";
|
||
|
createHome = true;
|
||
|
hashedPassword = "$6$a1q2Duoe35hd5$IaZGXPfqyGv9uq5DQm7DZq0vIHsUs39sLktBiBBqMiwl/f/Z4jSvNZLJp9DZJYe5u2qGBYh1ca.jsXvQA8FPZ/";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|