nix-config/hosts/nixos/modules/users.nix
lightly-toasted 45a49b1529 feat: add mouse actions
Refs: 302185f6a873209ea51a26b314faa24c45cd03ac
2025-08-11 11:45:21 +09:00

11 lines
219 B
Nix

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