added fonts and programs nix

This commit is contained in:
kenji
2025-12-23 20:12:10 +00:00
parent facce75d9f
commit cd647e7d7b
4 changed files with 14 additions and 12 deletions
+12
View File
@@ -0,0 +1,12 @@
{pkgs, ...}: {
programs = {
ssh.extraConfig = myConfig.ssh.extraConfig;
bash.interactiveShellInit = ''
if [[ $(${pkgs.procps}/bin/ps --no-header --pid=$PPID --format=comm) != "fish" && -z ''${BASH_EXECUTION_STRING} ]]; then
shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=""
exec ${pkgs.fish}/bin/fish $LOGIN_OPTION
fi
'';
fish.enable = true;
};
}