mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 09:36:14 +01:00
519d7b3841
Signed-off-by: Magic_RB <magic_rb@redalder.org>
10 lines
216 B
Nix
10 lines
216 B
Nix
{ inputs, ... }:
|
|
{
|
|
flake.overlays.emacsclient-remote =
|
|
final: prev: {
|
|
emacsclient-remote = prev.writeShellScriptBin
|
|
"emacsclient-remote"
|
|
(builtins.readFile ./emacsclient-remote);
|
|
};
|
|
}
|