nixos/system/users.nix
2024-03-18 14:09:49 +01:00

21 lines
398 B
Nix

{ config, pkgs, ... }: {
programs.zsh.enable = true;
environment.shells = with pkgs; [ zsh ];
users.users.mbeno = {
shell = pkgs.zsh;
isNormalUser = true;
description = "Martin";
extraGroups = [ "networkmanager" "wheel" "docker" ];
packages = with pkgs; [
firefox
alacritty
mumble
zoom
mattermost-desktop
# thunderbird
];
};
}