拆分 Home Manager 程序配置

This commit is contained in:
2026-05-30 22:55:47 +08:00
parent 66f91f8506
commit 272d6402ad
7 changed files with 116 additions and 95 deletions
+14
View File
@@ -0,0 +1,14 @@
{ ... }:
{
home.sessionPath = [
"$HOME/.npm-global/bin"
];
programs.fish = {
enable = true;
interactiveShellInit = ''
fish_add_path "$HOME/.npm-global/bin"
'';
};
}