From 68f532398c235f8d7313fb887096e420773f48ab Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Sun, 23 Nov 2025 16:58:30 +0900 Subject: [PATCH] feat(home/y2q): add zsh --- home/hosts/y2q.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/home/hosts/y2q.nix b/home/hosts/y2q.nix index fa93732..1a66ab1 100644 --- a/home/hosts/y2q.nix +++ b/home/hosts/y2q.nix @@ -9,6 +9,8 @@ ../modules/cli/btop.nix ../modules/cli/yazi.nix ../modules/cli/nixvim + ../modules/cli/zsh.nix + ../modules/cli/direnv.nix ]; home = { @@ -17,6 +19,13 @@ stateVersion = "24.11"; }; + programs.zsh.initContent = '' + PROMPT='%n@%m:%~/ > ' + export EDITOR="nvim" + export VISUAL="nvim" + export LANG=en_US.UTF-8 + ''; + nixpkgs.config.allowUnfree = true; systemd.user.startServices = "sd-switch"; }