Initial clean commit

This commit is contained in:
randogoth 2026-02-05 17:57:02 +02:00
commit 1862821f8f
15 changed files with 1240 additions and 0 deletions

20
modules/users/tobias.nix Normal file
View file

@ -0,0 +1,20 @@
{ pkgs, ... }:
{
users.users.tobias = {
isNormalUser = true;
uid = 1000;
group = "tobias";
extraGroups = [ "wheel" ];
home = "/home/tobias";
shell = pkgs.bashInteractive;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBgC4+zkTKNLPCt1vcTLyA+iwKGG8hrmcN2XKUExAR8W randogoth@mrht"
];
};
users.groups.tobias = {
gid = 1000;
};
security.sudo.wheelNeedsPassword = false;
}