feat: add nixpkgs-wayland overlay for newer wayland stuff

This commit is contained in:
oddlama 2023-09-04 23:25:47 +02:00
parent d515201729
commit 5daa44e11c
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
3 changed files with 202 additions and 5 deletions

View file

@ -49,6 +49,11 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-wayland = {
url = "github:nix-community/nixpkgs-wayland";
inputs.nixpkgs.follows = "nixpkgs";
};
microvm = {
url = "github:astro/microvm.nix";
inputs.nixpkgs.follows = "nixpkgs";
@ -85,6 +90,7 @@
microvm,
nixos-generators,
nixpkgs,
nixpkgs-wayland,
pre-commit-hooks,
...
} @ inputs: let
@ -140,9 +146,10 @@
import ./lib inputs
++ import ./pkgs/default.nix
++ [
microvm.overlay
elewrap.overlays.default
devshell.overlays.default
elewrap.overlays.default
microvm.overlay
nixpkgs-wayland.overlay
];
};