configuration.nix/system.rico/programs/default.nix
2023-04-10 23:24:13 +05:30

10 lines
139 B
Nix

{ ... }: {
imports = [
./neovim.nix
];
programs = {
zsh.enable = true;
};
environment.pathsToLink = [ "/share/zsh" ];
}