Files
flake/home/modules/zsh.nix
T
2026-05-17 10:24:49 +08:00

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";
}