mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
27 lines
463 B
Nix
27 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;
|
|
}
|