{ pkgs, lib, config, ... }: { imports = [ ./git.nix ./ghostty.nix ./starship.nix ./tmux.nix ./lazygit.nix ./twm.nix ./zsh.nix ]; home = { homeDirectory = lib.mkForce ( if pkgs.stdenv.isDarwin then "/Users/${config.home.username}" else "/home/${config.home.username}" ); # Do not change this after the first installation stateVersion = "24.11"; }; nixpkgs.config.allowUnfree = true; home.packages = with pkgs; [ claude-code nodejs_22 ]; # Let home-manager manage itself programs.home-manager.enable = true; }