blob: 9ee79de671a9009931b3409d3fe53436c0d2c8ed (
plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{
lib,
config,
pkgs,
...
}: let
inherit (lib) mkIf mkDefault;
cfg = config.desktops;
in {
imports = [
./binds.nix
./config.nix
./idle.nix
];
config = mkIf cfg.sway {
desktops.wayland = true;
xdg.portal = {
config = {
sway.common = ["gtk" "wlr"];
};
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
];
};
programs.sway = {
enable = true;
package = pkgs.swayfx;
wrapperFeatures = {
base = false;
gtk = false;
};
};
home-manager.users.${config.user} = {
wayland.windowManager.sway = {
enable = true;
package = pkgs.swayfx;
# FIXME: this is bad, but swayfx cannot build if set :(
checkConfig = false;
xwayland = true;
systemd.enable = true;
};
};
};
}
|