nixos-config/nixos/modules/users/sweetbread.nix
2024-10-02 17:25:14 +03:00

17 lines
344 B
Nix

{ pkgs, ... }: {
programs.zsh.enable = true;
users = {
defaultUserShell = pkgs.zsh;
users.sweetbread = {
isNormalUser = true;
description = "Sweet Bread";
extraGroups = [ "networkmanager" "wheel" "input" "libvirtd" ];
packages = with pkgs; [];
};
};
services.getty.autologinUser = "sweetbread";
}