{ pkgs, userName, ... }: { # Import sub modules imports = [ ./atuin.nix ./shell.nix ./core.nix ./git.nix ./starship.nix ./eza.nix ./neovim.nix ./direnv.nix ./sway.nix ./terminal.nix ]; # Home Manager needs a bit of information about you and the # paths it should manage. home = { username = userName; homeDirectory = if pkgs.stdenv.isDarwin then "/Users/${userName}" else "/home/${userName}"; sessionVariables = { XDG_CURRENT_DESKTOP = "sway"; }; pointerCursor = { gtk.enable = true; package = pkgs.bibata-cursors; name = "Bibata-Modern-Classic"; size = 22; }; stateVersion = "24.05"; }; # Let Home Manager install and manage itself. programs.home-manager.enable = true; }