Files
nixos/modules/nixos/user.nix
T
kenji f7108a173a add(nixos): wireshark and her tools
used for testing wh80 keyboard
2026-04-11 07:46:30 -05:00

19 lines
331 B
Nix

{
pkgs,
myConfig,
config,
...
}: {
users = {
mutableUsers = true;
users = {
${myConfig.nixos.username} = {
isNormalUser = true;
extraGroups = ["wheel" "networkmanager" "input" "video" "wireshark"];
initialPassword = "password";
useDefaultShell = true;
};
};
};
}