dotfiles/nix/pkgs/default.nix
Oliver Davies 3e9a27874a Alter notes to create daily notes
Alter notes to create daily notes instead of monthly notes.
2025-01-19 21:50:44 +00:00

17 lines
445 B
Nix

{ pkgs, prev, ... }:
let
inherit (pkgs) callPackage;
vimPlugins = callPackage ./vim-plugins { inherit callPackage; };
in
{
build-glove80 = callPackage ./build-glove80.nix { };
notes = callPackage ./notes { };
i3-battery-popup = callPackage ./i3-battery-popup.nix { };
tmux-sessionizer = callPackage ./tmux-sessionizer { };
upload-to-files = callPackage ./upload-to-files.nix { };
vimPlugins = prev.vimPlugins // vimPlugins;
}