infra/nix/london/wayland.nix

13 lines
304 B
Nix
Raw Normal View History

2024-02-05 13:13:44 +00:00
{
config,
lib,
pkgs,
...
}: let
2023-08-10 08:51:19 +01:00
rev = "master"; # 'rev' could be a git rev, to pin the overlay.
url = "https://github.com/nix-community/nixpkgs-wayland/archive/${rev}.tar.gz";
2024-02-05 13:13:44 +00:00
waylandOverlay = import "${builtins.fetchTarball url}/overlay.nix";
in {
nixpkgs.overlays = [waylandOverlay];
}