bunch of walls, wrap kitty, touch zshrc

This commit is contained in:
jackjohn7 2026-03-29 23:22:33 -05:00
parent 0f4612d1b0
commit c987882b7d
64 changed files with 141 additions and 6 deletions

View file

@ -0,0 +1,16 @@
{ self, inputs, ... }:
{
perSystem =
{ pkgs, ... }:
{
packages.kitty = pkgs.symlinkJoin {
name = "kitty";
buildInputs = [ pkgs.makeWrapper ];
paths = [ pkgs.kitty ];
postBuild = ''
wrapProgram $out/bin/kitty \
--append-flags "-c ${./kitty.conf}"
'';
};
};
}