17 lines
333 B
Nix
17 lines
333 B
Nix
{ pkgs, ... }: {
|
|
programs.zsh.enable = true;
|
|
|
|
users = {
|
|
defaultUserShell = pkgs.zsh;
|
|
|
|
users.sweetbread = {
|
|
isNormalUser = true;
|
|
description = "Chest";
|
|
extraGroups = [ "networkmanager" "wheel" "input" "libvirtd" ];
|
|
packages = with pkgs; [];
|
|
};
|
|
};
|
|
|
|
services.getty.autologinUser = "chest";
|
|
}
|