nix-config/users/willifan/common/user.nix
2024-07-06 21:42:24 +02:00

10 lines
No EOL
184 B
Nix

{ pkgs, ... }:
{
users.users.willifan = {
isNormalUser = true;
description = "willifan";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [];
};
}