504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
26 lines
463 B
Nix
26 lines
463 B
Nix
{
|
|
lib,
|
|
swayfx-unwrapped,
|
|
sway,
|
|
# Used by the NixOS module:
|
|
withBaseWrapper ? true,
|
|
extraSessionCommands ? "",
|
|
withGtkWrapper ? false,
|
|
extraOptions ? [ ], # E.g.: [ "--verbose" ]
|
|
isNixOS ? false,
|
|
enableXWayland ? true,
|
|
dbusSupport ? true,
|
|
}:
|
|
|
|
sway.override {
|
|
inherit
|
|
withBaseWrapper
|
|
extraSessionCommands
|
|
withGtkWrapper
|
|
extraOptions
|
|
isNixOS
|
|
enableXWayland
|
|
dbusSupport
|
|
;
|
|
sway-unwrapped = swayfx-unwrapped;
|
|
}
|