dots/pkgs/default.nix
Price Hiller 720ea2d89f
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 40s
refactor(nix): improve neovim nightly handling
2024-10-31 13:12:01 -05:00

21 lines
378 B
Nix

{ pkgs, ... }:
{
screen-cap = pkgs.callPackage ./screen-cap/default.nix { };
Fmt = pkgs.writeShellApplication {
name = "Fmt";
runtimeInputs = with pkgs; [
stylua
gnugrep
nixfmt-rfc-style
nodePackages.prettier
shfmt
];
text = (
''
#!${pkgs.bash}/bin/bash
''
+ builtins.readFile ./fmt.bash
);
};
}