{ config, pkgs, ... }:

{
  home.username = "tobias";
  home.homeDirectory = "/home/tobias";

  imports = [
    ./common.nix
    ./graphical.nix
    ./nvim.nix
  ];

  home.packages = with pkgs; [
    rustdesk # remote desktop tool
  ];
}