mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-23 04:43:00 +09:00
15 lines
217 B
Nix
15 lines
217 B
Nix
{...}: {
|
|
flake.modules.darwin.shell = {pkgs, ...}: {
|
|
programs.zsh.enable = true;
|
|
|
|
environment.shells = [
|
|
pkgs.zsh
|
|
];
|
|
};
|
|
|
|
repo.homeModules.shell = {
|
|
imports = [
|
|
./_shell
|
|
];
|
|
};
|
|
}
|