This commit is contained in:
2025-10-27 23:10:11 +09:00
parent 726fce7949
commit 9d5ffed340
7 changed files with 71 additions and 44 deletions

18
modules/home/fish/env.nix Normal file
View File

@@ -0,0 +1,18 @@
{ pkgs, ... }:
{
home.sessionVariables = {
EDITOR = "nvim";
PNPM_HOME = "$HOME/.local/share/pnpm";
OPENSSL_DIR = "${pkgs.openssl.dev}";
KUBECONFIG = "$HOME/.kube/config";
OPENSSL_LIB_DIR = "${pkgs.openssl.out}/lib";
OPENSSL_INCLUDE_DIR = "${pkgs.openssl.dev}/include";
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
NIX_DEV_SHELL_DEFAULT_SHELL = "(which fish)";
};
home.sessionPath = [
"$HOME/.local/bin"
"$PNPM_HOME"
];
}