mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
11 lines
534 B
Nix
11 lines
534 B
Nix
/* This contains various packages we want to overlay. Note that the
|
|
* other ".nix" files in this directory are automatically loaded.
|
|
*/
|
|
final: prev: {
|
|
advcpmv = final.callPackage ../pkgs/advcpmv.nix {};
|
|
nx_tzdb = final.callPackage ../pkgs/nx_tzdb.nix {};
|
|
yuzu-archive = final.libsForQt5.callPackage ../pkgs/yuzu-archive.nix {};
|
|
gnome-set-panel-monitor = final.callPackage ../pkgs/gnome-set-panel-monitor.nix {};
|
|
gnome-fullscreen-to-empty-workspace = final.callPackage ../pkgs/gnome-fullscreen-to-empty-workspace.nix {};
|
|
}
|