nix-config/users/willifan/user.nix
2024-05-12 14:42:26 +02:00

9 lines
No EOL
183 B
Nix

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