summaryrefslogtreecommitdiffstats
path: root/build.nix
blob: 730a0c31d1f807f62c6ea3a860376c9c519c9fc8 (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/nixpkgs-unstable) { overlays = [ (import ./default.nix) ]; }).waylandPkgs;
in
  {
    all = [ nixosUnstable nixpkgsUnstable ];
    inherit nixosUnstable nixpkgsUnstable;
  }