{ config, pkgs, ... }: { imports = [ ./cli ]; programs = { home-manager.enable = true; }; home = { username = "richie"; homeDirectory = "/home/${config.home.username}"; stateVersion = "24.05"; sessionVariables.FLAKE = "$HOME/dotfiles"; packages = with pkgs; [ # cli btop eza ripgrep starship tmux # networking wget ]; }; }