build(nix): Add shell hook with banner

This commit is contained in:
Emil Ivanichkov 2024-01-22 16:18:29 +02:00
parent f8e2551839
commit f955dd70a9
1 changed files with 7 additions and 0 deletions

View File

@ -17,7 +17,14 @@
nodejs
yarn-berry
python3
figlet
];
shellHook = ''
if [ "''${DISABLE_DEVSHELL_BANNER:-}" != true ]; then
figlet "Welcome to Nimbus-GUI"
fi
'';
};
};
};