10 lines
295 B
Nix
10 lines
295 B
Nix
{ colloid-icon-theme, fetchFromGitHub, ... }:
|
|
colloid-icon-theme.overrideAttrs (_finalAttrs: {
|
|
version = "master";
|
|
src = fetchFromGitHub {
|
|
owner = "vinceliuice";
|
|
repo = "Colloid-icon-theme";
|
|
rev = "main";
|
|
hash = "sha256-x2SSaIkKm1415avO7R6TPkpghM30HmMdjMFUUyPWZsk=";
|
|
};
|
|
})
|