This commit is contained in:
Lucy 2025-09-19 17:37:11 +02:00
parent 5177e8bec0
commit edaab48520
2 changed files with 29 additions and 54 deletions

View file

@ -82,19 +82,36 @@ in
# services.libinput.enable = true;
# Define a user account. Don't forget to set a password with passwd.
users.users.lucy = {
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMCKx5uQMiE19+jDmEueahQDXMGVzlC678ZwaztrwIlR lucy@twinkpad
users.users = {
lucy = {
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMCKx5uQMiE19+jDmEueahQDXMGVzlC678ZwaztrwIlR lucy@twinkpad
"
];
isNormalUser = true;
extraGroups = [
"wheel"
"podman"
]; # Enable sudo for the user.
packages = with pkgs; [
tree
];
];
isNormalUser = true;
extraGroups = [
"wheel"
"podman"
]; # Enable sudo for the user.
packages = with pkgs; [
tree
];
};
johannes = {
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMdk2Sr2drl2NcwlZlOAhFppER9sqvYmPdvAviWVVakT johannes-mba"
];
isNormalUser = true;
extraGroups = [
"wheel"
"podman"
]; # Enable sudo for the user.
packages = with pkgs; [
tree
];
};
};
# programs.firefox.enable = true;