nixos-config/hosts/zilch/modules/overlays.nix
Gabriel Arazas b9785fed44 Go back to using stable channels and add unstable channel as a separate channel
NixOS 20.09 is just around the corner anyways so the packages will be updated soonish.
2020-08-20 02:36:05 +08:00

16 lines
381 B
Nix

# All of the machine-specific overlays.
[
(self: super:
{
rofi = super.rofi.overrideAttrs (oldAttrs: {
name = "rofi-next";
src = super.fetchFromGitHub {
owner = "davatorium";
repo = "rofi";
rev = "802a9489e7fbf809890ab6bf39e62664fa4c134f";
sha256 = "1qjqw7v6qdmc5bxfaq57cb8hf99vr0prp5bn4yzal7r5im855s8f";
};
});
})
]