add ascii script

This commit is contained in:
Frost-Phoenix 2024-03-29 11:01:06 +01:00
parent 1d27984dff
commit 401719ba0e
2 changed files with 49 additions and 0 deletions

View file

@ -19,6 +19,8 @@
show-keybinds = pkgs.writeScriptBin "show-keybinds" (builtins.readFile ./scripts/keybinds.sh);
vm-start = pkgs.writeScriptBin "vm-start" (builtins.readFile ./scripts/vm-start.sh);
ascii = pkgs.writeScriptBin "ascii" (builtins.readFile ./scripts/ascii.sh);
in {
home.packages = with pkgs; [
wall-change
@ -41,5 +43,7 @@ in {
show-keybinds
vm-start
ascii
];
}