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