This commit is contained in:
Lennart J. Kurzweg (Nx2)
2025-07-10 12:26:53 +02:00
parent 9d9b2cf84d
commit 3bc47393b3
3 changed files with 834 additions and 2 deletions

12
home-modules/figlet.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, hyper, ... }:
{
home = {
packages = with pkgs; [
figlet
(pkgs.writeShellScriptBin "fgl" ''
figlet -f ${hyper.home}/.local/share/figlet/nx2.flf -w 9999
'')
];
file.".local/share/figlet/nx2.flf".text = builtins.readFile ./assets/nx2.flf;
};
}