refactor: move actual budget package to flake

# changes:
## Nixpkgs
- move actual budget package to flake
## Yazi
- Fix some keymap
This commit is contained in:
danny 2025-10-03 22:46:47 +08:00
parent 54ab4d4181
commit 321f740af0
8 changed files with 225 additions and 251 deletions

View file

@ -0,0 +1,22 @@
{
src,
stdenvNoCC,
...
}:
stdenvNoCC.mkDerivation {
inherit src;
dontUnpack = true;
dontBuild = true;
pname = "dfkai-sb";
version = "1.0.0";
installPhase = ''
runHook preInstall
install -Dm 644 $src -t $out/share/fonts/truetype
runHook postInstall
'';
}