okay ked, some stronger hashed

This commit is contained in:
Noa Aarts 2024-03-15 23:31:36 +01:00
parent 709ac92b6d
commit 3054b0692d
2 changed files with 12 additions and 7 deletions

View file

@ -79,12 +79,17 @@
users.groups.nixpow.members = [ "root" ];
# Define a user account. Don't forget to set a password with passwd.
users.users.noa = {
isNormalUser = true;
description = "Noa Aarts";
extraGroups = [ "networkmanager" "wheel" "nixpow" ];
packages = with pkgs; [
];
users.users = {
root = {
isSystemUser = true;
description = "Root";
hashedPassword = "!";
noa = {
isNormalUser = true;
description = "Noa Aarts";
extraGroups = [ "networkmanager" "wheel" "nixpow" ];
hashedPassword = "$6$rounds=512400$Zip3xoK2zcoR4qEL$N13YTHO5tpWfx2nKb1sye.ZPwfoRtMQ5f3YrMZqKzzoFoSSHHJ.l5ulCEa9HygFxZmBtPnwlseFEtl8ERnwF50";
};
};
home-manager = {