nix-darwin/modules/aspects/shell.nix

15 lines
217 B
Nix

{...}: {
flake.modules.darwin.shell = {pkgs, ...}: {
programs.zsh.enable = true;
environment.shells = [
pkgs.zsh
];
};
repo.homeModules.shell = {
imports = [
./_shell
];
};
}