pluh 🗣

This commit is contained in:
Lukas Wurzinger 2025-03-09 17:03:39 +01:00
parent 516b647ed4
commit 5a904c8507
No known key found for this signature in database

View file

@ -13,17 +13,14 @@ in {
mainUser = "lukas";
users = {
root = {
hashedPassword = "!";
# TODO define this more granularly
openssh.authorizedKeys.keys = [];
};
root.hashedPassword = "!";
${mainUser} = {
description = "Lukas Wurzinger";
uid = 1000;
isNormalUser = true;
hashedPasswordFile = config.age.secrets."user-${mainUser}".path;
openssh.authorizedKeys.keys = builtins.attrValues config.pubkeys.users;
extraGroups = ["wheel"];
};
};
};