Add zsh to homemanager

This commit is contained in:
Torjus Håkestad 2024-02-27 10:09:03 +01:00
parent 7410af0502
commit df883ff558
2 changed files with 11 additions and 0 deletions

View File

@ -7,6 +7,7 @@
users.${user} = {
imports = [
./programs/firefox
./zsh
];
firefox.enable = true;
home = {

10
home/zsh/default.nix Normal file
View File

@ -0,0 +1,10 @@
{ user, pkgs, ...}: {
home.packages = with pkgs; [ fd ];
programs.zsh = {
enable = true;
autocd = false;
enableAutosuggestions = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
};
}