Add atuin and starship

This commit is contained in:
Leonora Tindall 2024-02-05 10:54:54 -06:00
parent a2473d5d3f
commit d88162f75d
3 changed files with 19 additions and 0 deletions

10
atuin.nix Normal file
View File

@ -0,0 +1,10 @@
{ config, pkgs, ...}:
{
programs.atuin = {
enable = true;
enableZshIntegration = true;
settings = {
enter_accept = false;
};
};
}

View File

@ -6,6 +6,8 @@ in
./vim.nix
./git.nix
./zsh.nix
./atuin.nix
./starship.nix
./packages.nix
];

7
starship.nix Normal file
View File

@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
programs.starship = {
enable = true;
enableZshIntegration = true;
};
}