12 lines
171 B
Nix
12 lines
171 B
Nix
{
|
|
self,
|
|
inputs,
|
|
...
|
|
}: {
|
|
perSystem = {pkgs, ...}: {
|
|
packages.myZsh = inputs.wrappers.wrappers.zsh.wrap {
|
|
zshrc.content = (self.dots.zshrc pkgs);
|
|
};
|
|
};
|
|
}
|