Evie Litherland-Smith
b102f9e209
Reduce complexity and in flake.nix and be more efficient in re-using things Removed some reduandant files in home/ and tidied up the structure somewhat Moved things from desktop, gui, etc... to top level Changed env to shell, indiv shell expressions import relevant others
21 lines
565 B
Nix
21 lines
565 B
Nix
{config, ...}: {
|
|
imports = [./default.nix];
|
|
programs = {
|
|
zsh = {
|
|
enable = true;
|
|
enableAutosuggestions = true;
|
|
enableCompletion = true;
|
|
syntaxHighlighting.enable = true;
|
|
enableVteIntegration = true;
|
|
autocd = true;
|
|
dotDir = ".config/zsh";
|
|
historySubstringSearch.enable = true;
|
|
history.path = "${config.xdg.dataHome}/zsh/history";
|
|
};
|
|
direnv.enableZshIntegration = true;
|
|
fzf.enableZshIntegration = true;
|
|
keychain.enableZshIntegration = true;
|
|
starship.enableZshIntegration = true;
|
|
};
|
|
}
|