Files

12 lines
340 B
Nix

{ lib, pkgs, ... }:
{
programs.zsh.enable = true;
programs.zsh.enableCompletion = false;
home.shell.enableZshIntegration = true;
home.file =
(lib.origami404.standaloneToHome ".zsh.d")
// (lib.origami404.standaloneToHome { rel = ".zshrc"; realpath = ".zshrc.o4"; });
programs.zsh.initContent = "source $HOME/.zshrc.o4";
}