nix-config/hosts/ideapad/modules/users.nix

11 lines
219 B
Nix

{ config, pkgs, ... }:
{
users.users.toast = {
isNormalUser = true;
description = "toast";
extraGroups = [ "networkmanager" "wheel" "ydotool" ];
packages = with pkgs; [];
shell = pkgs.zsh;
};
}