24 lines
1.0 KiB
Nix
24 lines
1.0 KiB
Nix
# **************************************************************************** #
|
|
# #
|
|
# ::: :::::::: #
|
|
# user.nix :+: :+: :+: #
|
|
# +:+ +:+ +:+ #
|
|
# By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ #
|
|
# +#+#+#+#+#+ +#+ #
|
|
# Created: 2025/09/05 23:42:18 by tomoron #+# #+# #
|
|
# Updated: 2026/06/14 18:07:55 by tomoron ### ########.fr #
|
|
# #
|
|
# **************************************************************************** #
|
|
|
|
{ ... }:
|
|
|
|
{
|
|
users.users.tom = {
|
|
extraGroups = [
|
|
"libvirtd" # can use libvirtd
|
|
"dialout" # can use serial devices
|
|
"wireshark" # can use wireshask
|
|
];
|
|
};
|
|
}
|