teutat3s
2ca0bd7c3e
All checks were successful
Flake checks / Check (pull_request) Successful in 2m36s
20 lines
488 B
Nix
20 lines
488 B
Nix
{ flake, config, ... }:
|
|
{
|
|
home-manager.users.${config.pub-solar-os.authentication.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];
|
|
# };
|
|
# };
|
|
};
|
|
};
|
|
}
|