e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
12 lines
306 B
Nix
12 lines
306 B
Nix
{ lib, pkgs }:
|
|
|
|
lib.makeScope pkgs.newScope (self:
|
|
let
|
|
inherit (self) callPackage;
|
|
in {
|
|
wayfire-plugins-extra = callPackage ./wayfire-plugins-extra.nix { };
|
|
wcm = callPackage ./wcm.nix { };
|
|
wf-shell = callPackage ./wf-shell.nix { };
|
|
windecor = callPackage ./windecor.nix { };
|
|
}
|
|
)
|