blob: d9fe039a2a533b501ee7b21e01e66e71afd1b439 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
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;
}
|