{ config, pkgs, ... }: { home.stateVersion = "23.05"; imports = [ ./git.nix ./zsh.nix ./dev.nix ./tmux.nix ./ssh.nix ]; home.packages = with pkgs; [ direnv dive jq nix-direnv nixfmt nixpkgs-fmt ripgrep rnix-lsp tree ]; programs = { direnv = { enable = true; nix-direnv.enable = true; enableZshIntegration = true; config = { global.disable_stdin = true; global.strict_env = true; }; }; }; }