.dotfiles/pkgs/e/default.nix
2024-12-29 00:23:43 +01:00

9 lines
221 B
Nix

{ self, writeShellApplication, emacs30-pgtk, sway, jq }:
let
name = "e";
in
writeShellApplication {
inherit name;
runtimeInputs = [ emacs30-pgtk sway jq ];
text = builtins.readFile "${self}/scripts/${name}.sh";
}