nixos-configs/legacyPackages/dracula/default.nix
matt1432 b307e7df13
All checks were successful
Discord / discord commits (push) Has been skipped
feat(hypr): use hyprcursor for cursor theme
2024-07-23 16:04:18 -04:00

27 lines
687 B
Nix

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