This commit is contained in:
Peder Bergebakken Sundt 2024-04-19 17:53:58 +02:00
parent 4065e70843
commit d3c2338728
2 changed files with 19 additions and 0 deletions

View File

@ -10,6 +10,7 @@
../../profiles/sshd.nix ../../profiles/sshd.nix
../../users/pbsds ../../users/pbsds
../../users/bartvbl
../../profiles/mounts/panorama-zfs.nix ../../profiles/mounts/panorama-zfs.nix

18
users/bartvbl/default.nix Normal file
View File

@ -0,0 +1,18 @@
{ config, pkgs, lib, ... }:
{
users.users.bartvbl = {
isNormalUser = true;
uid = 1004;
description = "Bart Iver van Blokland";
extraGroups = [ "networkmanager" "wheel" ]; # TODO: NAS stuff
shell = pkgs.bashInteractive;
packages = with pkgs; [
rsync
];
openssh.authorizedKeys.keys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAzKmT0H81NieLRqwLQfHaR0i/W+0SzwUehqktbWF9PiPV5X0KyH0WRa1v8K4+aprn5UXZechhfVuMp+O8kR4RjEblnBvZvd4rZkAQ2+yir8XRIF0cTkFj8QozKCOOE1f/9jFyiRr9BZyHZErGqGI0Sw0OLjcgcgThedO1K2odCK4ZTnLT6Gz5TJumzMcdQ9e4XXunCOmtFEM27mafsoxhvWwYjzm5lx6XPuiKWApNVOt/ibUFIaKQ4EJazHG93H7B7PHzGb/yOn+laNJRWvz9YesgcD4EejKAGTZXD38LnsnnjzCi1HaQ9zWa3aeObzyrqhX+IIuSZGpdt9kO8X7ZZQ=="
];
};
}