dotfiles/lib/shared/home-manager.nix
Oliver Davies 361412db61 Add wezterm
Add wezterm as another terminal option and to see how it compares to
Alacritty.
2024-05-24 15:29:00 +01:00

26 lines
571 B
Nix

{ inputs, pkgs, username, self, }: {
home.username = "${username}";
home.homeDirectory = "/home/${username}";
home.stateVersion = "22.05";
programs.home-manager.enable = true;
imports = [
(import ./modules/neovim.nix { inherit inputs; })
./modules/bat.nix
./modules/bin.nix
./modules/direnv.nix
./modules/fzf.nix
./modules/git.nix
./modules/lsd.nix
./modules/nnn.nix
./modules/phpactor.nix
./modules/ripgrep.nix
./modules/syncthing.nix
./modules/tmux.nix
./modules/wezterm.nix
./modules/zsh.nix
];
}