nix-config/modules/default/nixos/users.nix
2025-04-24 21:51:26 +02:00

11 lines
205 B
Nix

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