18 lines
385 B
Nix
18 lines
385 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; [];
|
|
};
|
|
};
|
|
|
|
# Enable automatic login for the user.
|
|
services.getty.autologinUser = "sweetbread";
|
|
}
|