summaryrefslogtreecommitdiffstats
path: root/build.nix
blob: b985826cef14faedcd66c831384d0ef51cfc9afa (plain)
1
2
3
4
5
6
7
8
9
10
let
  # TODO: convert to callPackages and non-overlay style? more reliable and usable by others, but can cause more pkg dupe?
  nixosUnstable = (import (import ./nixpkgs/nixos-unstable) { overlays = [ (import ./default.nix) ]; }).waylandPkgs;
  nixpkgsUnstable = (import (import ./nixpkgs/nixos-unstable) { overlays = [ (import ./default.nix) ]; }).waylandPkgs;
in
  {
    all = [ nixosUnstable nixpkgsUnstable ];
    inherit nixosUnstable nixpkgsUnstable;
  }