{
  self,
  pkgs,
  config,
  ...
}: {
  home = {
    username = "pim";
    homeDirectory = "/home/pim";
    stateVersion = "24.05";

    packages = with pkgs.unstable; [
      devenv
      vlc
      handbrake
      lutris
    ];
  };

  sops = {
    defaultSopsFile = "${self}/secrets/gamepc/pim.yaml";
    # TODO: should be set automatically?
    age.keyFile = "${config.xdg.configHome}/sops/age/keys.txt";
    secrets."sunshine_credentials".path = "${config.xdg.configHome}/sunshine/sunshine_credentials.json";
  };
}