nix-config/modules/default/nixos/users.nix
2025-02-09 16:49:24 +01:00

11 lines
197 B
Nix

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