Files
nix-config/osConfigs/global/user.nix
tomoron ec8b9eb1b8
All checks were successful
update the nix flake lock automatically every week / update (push) Successful in 30s
vim: add lsp_signature, set exrc remove pylsp-mypy package (broken)
2026-07-09 13:50:14 +02:00

26 lines
1.1 KiB
Nix

# **************************************************************************** #
# #
# ::: :::::::: #
# user.nix :+: :+: :+: #
# +:+ +:+ +:+ #
# By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2025/09/05 23:42:18 by tomoron #+# #+# #
# Updated: 2026/07/07 17:49:04 by tomoron ### ########.fr #
# #
# **************************************************************************** #
{ ... }:
{
users.users.tom = {
extraGroups = [
"libvirtd" # can use libvirtd
"dialout" # can use serial devices
"wireshark" # can use wireshask
"plugdev" #some esp things
];
};
users.groups.plugdev = {};
}