fix uuids for drives

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-12-16 11:05:58 -06:00
parent 8dddb1588d
commit 29e83501bf
3 changed files with 11 additions and 4 deletions

View file

@ -74,10 +74,16 @@
users.users.nixos = {
password = "password";
initialHashedPassword = lib.mkForce null;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH2KFSRkViT+asBTjCgA7LNP3SHnfNCW+jHbV08VUuIi nix2nix"
];
};
users.users.root = {
password = "password";
initialHashedPassword = lib.mkForce null;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH2KFSRkViT+asBTjCgA7LNP3SHnfNCW+jHbV08VUuIi nix2nix"
];
};
}
)