Compare commits

...

2 Commits

Author SHA1 Message Date
e8c73318a1 No password for wheel 2024-06-09 20:24:55 +02:00
133d7f9831 guest user for nixos 2024-06-09 20:09:45 +02:00

View File

@ -64,6 +64,15 @@
shell = pkgs.zsh;
};
users.users.guest = {
isNormalUser = true;
extraGroups = [ ];
home = "/home/guest";
shell = pkgs.zsh;
};
security.sudo.wheelNeedsPassword = false;
environment.systemPackages = with pkgs; [
binutils
coreutils