nixpkgs/overlays/my-packages/default.nix
2022-02-02 08:55:02 +01:00

24 lines
338 B
Nix

self: super: {
myPackages = super.buildEnv {
name = "my-packages";
paths = [
# System tools
self.dmenu
self.st
self.dunst
self.i3lock-color
# Dev tools
self.litecli
self.mycli
self.mkcert
# Writing
self.languagetool
# Media
self.vlc
];
};
}