removed some bugs and corrected the README

This commit is contained in:
Tomas Rivera
2026-03-01 09:42:04 +01:00
parent ab4de4b42d
commit 035ecbce39
6 changed files with 37 additions and 9 deletions
+15
View File
@@ -0,0 +1,15 @@
# used for the terminal autostart. Needs to get cleared and recall fastfetch so that the bar from oh-my-zsh get resized
{ writeShellApplication, zsh, ... }:
writeShellApplication {
name = "custom-launch";
runtimeInputs = [
zsh
];
text = ''
sleep 2
clear
zsh
'';
}