nixos-configs/scopedPackages/dracula/default.nix
matt1432 7b65696436
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(scoped): fix directory structure
2025-02-18 16:04:26 -05:00

26 lines
550 B
Nix

{
lib,
pkgs,
...
} @ inputs:
lib.makeScope pkgs.newScope (drac: {
bat = drac.callPackage ./bat {
inherit (inputs) bat-theme-src mkVersion;
};
git = drac.callPackage ./git {
inherit (inputs) git-theme-src mkVersion;
};
gtk = import ./gtk {inherit (inputs) gtk-theme-src pkgs;};
plymouth = drac.callPackage ./plymouth {
inherit (inputs) dracula-plymouth-src mkVersion;
};
sioyek = drac.callPackage ./sioyek {
inherit (inputs) sioyek-theme-src mkVersion;
};
wallpaper = drac.callPackage ./wallpaper {};
})