zsh: enable, set for qenya, add config

This commit is contained in:
Katherina Walshe-Grey 2024-07-26 19:37:31 +01:00
parent 42ce170014
commit 3bed356294
8 changed files with 46 additions and 0 deletions

9
common/zsh.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, pkgs,... }:
{
programs.zsh.enable = true;
environment = {
shells = with pkgs; [ zsh ];
pathsToLink = [ "/share/zsh" ];
};
}