blob: 9583f9b7a710728b8bd4eaf1e96c88b07bf71d17 (
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
26
|
{
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;
}
|