infra/modules/core/terminal-tooling.nix
Benjamin Yule Bädorf 93a116f044
All checks were successful
Flake checks / Check (pull_request) Successful in 6m7s
refactor: Move all apps into modules
2024-04-28 17:38:55 +02:00

19 lines
478 B
Nix

{ flake, config, ... }: {
home-manager.users.${config.pub-solar-os.auth.username} = {
programs.git.enable = true;
programs.starship.enable = true;
programs.bash.enable = true;
programs.neovim = {
enable = true;
vimAlias = true;
viAlias = true;
defaultEditor = true;
# configure = {
# packages.myVimPackages = with pkgs.vimPlugins; {
# start = [vim-nix vim-surrund rainbow];
# };
# };
};
};
}