Benjamin Yule Bädorf
ef94681e11
All checks were successful
Flake checks / Check (pull_request) Successful in 6m5s
19 lines
488 B
Nix
19 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];
|
|
# };
|
|
# };
|
|
};
|
|
};
|
|
}
|