Add Zsh shell to Darwin services and setup Harald's dev environment

Add Zsh to the list of available shells in the Darwin services module.
Introduce new Nix configurations for aarch64-darwin, including system packages and font settings.
Set up user-specific environment for Harald on aarch64-darwin system.
This commit is contained in:
Harald Hoyer 2024-11-25 12:42:21 +01:00
parent 4292f4c334
commit f5670d2c0e
4 changed files with 64 additions and 5 deletions

View file

@ -27,11 +27,14 @@ in
packages =
with pkgs;
[
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-emoji
(nerdfonts.override { fonts = [ "Hack" ]; })
(nerdfonts.override {
fonts = [
"Hack"
"FiraCode"
"DroidSansMono"
"JetBrainsMono"
];
})
]
++ cfg.fonts;
};