{ pkgs, ... }: { networking.hostName = "opal"; time.timeZone = "Europe/London"; boot.initrd.kernelModules = [ "ideapad_laptop" ]; boot.kernelParams = [ "i8042.direct" "i8042.dumbkbd" ]; # funny keyboard issue hardware.opengl = { enable = true; extraPackages = with pkgs; [ intel-media-driver intel-vaapi-driver libvdpau-va-gl libva onevpl-intel-gpu ]; }; users.users.charlotte = { isNormalUser = true; description = "charlotte"; extraGroups = [ "networkmanager" "wheel" "video" ]; shell = pkgs.zsh; packages = ( with pkgs; [ stow ] ); }; }