nix-config/pkgs/default.nix
Patrick Großmann 4978892d2a
WIP: added wired-notify
feat: added autostart for systemd services
2023-10-12 02:30:03 +02:00

13 lines
312 B
Nix

[
(_self: super: {
zsh-histdb-skim = super.callPackage ./zsh-histdb-skim.nix {};
zsh-histdb = super.callPackage ./zsh-histdb.nix {};
deploy = super.callPackage ./deploy.nix {};
formats =
super.formats
// {
ron = import ./ron.nix {inherit (super) lib pkgs;};
};
})
]