10 lines
139 B
Nix
10 lines
139 B
Nix
{ ... }: {
|
|
imports = [
|
|
./neovim.nix
|
|
];
|
|
|
|
programs = {
|
|
zsh.enable = true;
|
|
};
|
|
environment.pathsToLink = [ "/share/zsh" ];
|
|
}
|