summaryrefslogtreecommitdiff
path: root/modules/desktops/sway/default.nix
blob: be3766d087a29336f49f4f852ffcc005259d9fa4 (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
51
52
{
  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;

    # TODO: set NIXOS_OZONE_WL env var

    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;

        # TODO: get swayfx to work with check config
        checkConfig = false;

        xwayland = true;
        systemd.enable = true;
      };
    };
  };
}