nix-config/modules/default/common/users.nix
2025-01-16 17:47:46 +01:00

11 lines
197 B
Nix

{ pkgs, ... }:
{
users.users.willifan = {
isNormalUser = true;
linger = true;
description = "willifan";
extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.bash;
};
}