Miscellanious stuff

This commit is contained in:
Tomas Rivera
2026-03-30 16:39:48 +02:00
parent 16c76a53e4
commit 9cac666fdd
11 changed files with 1246 additions and 17 deletions
+17
View File
@@ -0,0 +1,17 @@
# 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
'';
}