bunch of walls, wrap kitty, touch zshrc
This commit is contained in:
parent
0f4612d1b0
commit
c987882b7d
64 changed files with 141 additions and 6 deletions
16
modules/packages/kitty/default.nix
Normal file
16
modules/packages/kitty/default.nix
Normal 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}"
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue