c898defdbf
The top-level "wayfire" attribute is a Wayfire with wf-shell installed and nothing else. But wayfireApplications.withPlugins can be used to create a Wayfire with arbitrary plugins, or no plugins at all.
13 lines
166 B
Nix
13 lines
166 B
Nix
{ newScope, wayfire }:
|
|
|
|
let
|
|
self = with self; {
|
|
inherit wayfire;
|
|
|
|
callPackage = newScope self;
|
|
|
|
wf-shell = callPackage ./wf-shell.nix { };
|
|
};
|
|
in
|
|
self
|