11 lines
299 B
Nix
11 lines
299 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
programs.zsh.enable = true;
|
|
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";
|
|
}
|