nix-config/modules/DEFAULT/COMMON/users.nix
2024-12-26 16:51:37 +01:00

10 lines
190 B
Nix

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