fix: Fixes rare errors regarding Nix shell not finding the initialization script.

This commit is contained in:
Tera << 8 2024-12-28 15:41:05 -05:00
parent 49db323e81
commit fd4d6bfd65
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37

View file

@ -9,6 +9,8 @@
];
shellHook = ''
source init.sh
if [ -f init.sh ]; then
source init.sh
fi
'';
}