dotfiles/nix/pkgs/default.nix

16 lines
390 B
Nix
Raw Normal View History

{ pkgs, prev, ... }:
let
inherit (pkgs) callPackage;
vimPlugins = callPackage ./vim-plugins { inherit callPackage; };
in
{
build-glove80 = callPackage ./build-glove80.nix { };
notes = callPackage ./notes.nix { };
2024-11-27 19:00:42 +00:00
notify-battery = callPackage ./notify-battery.nix { };
2024-12-15 10:16:25 +00:00
tmux-sessionizer = callPackage ./tmux-sessionizer.nix { };
vimPlugins = prev.vimPlugins // vimPlugins;
}