summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/desktop-managers/lomiri.nix
blob: 469144aef4e0c370df39f9fe9c2d4bd713e20bcf (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{ config, pkgs, lib, ... }:

let
  cfg = config.services.desktopManager.lomiri;
in {
  options.services.desktopManager.lomiri = {
    enable = lib.mkEnableOption ''
      the Lomiri graphical shell (formerly known as Unity8)
    '';
  };

  config = lib.mkIf cfg.enable {
    environment = {
      systemPackages = (with pkgs; [
        glib # XDG MIME-related tools identify it as GNOME, add gio for MIME identification to work
        libayatana-common
        ubports-click
      ]) ++ (with pkgs.lomiri; [
        content-hub
        hfd-service
        history-service
        libusermetrics
        lomiri
        lomiri-download-manager
        lomiri-schemas # exposes some required dbus interfaces
        lomiri-session # wrappers to properly launch the session
        lomiri-sounds
        lomiri-system-settings
        lomiri-terminal-app
        lomiri-thumbnailer
        lomiri-url-dispatcher
        lomiri-wallpapers
        mediascanner2 # TODO possibly needs to be kicked off by graphical-session.target
        morph-browser
        qtmir # not having its desktop file for Xwayland available causes any X11 application to crash the session
        suru-icon-theme
        telephony-service
      ]);
    };

    systemd.packages = with pkgs.lomiri; [
      hfd-service
      lomiri-download-manager
    ];

    services.dbus.packages = with pkgs.lomiri; [
      hfd-service
      libusermetrics
      lomiri-download-manager
    ];

    fonts.packages = with pkgs; [
      # Applications tend to default to Ubuntu font
      ubuntu_font_family
    ];

    # Copy-pasted basic stuff
    hardware.opengl.enable = lib.mkDefault true;
    fonts.enableDefaultPackages = lib.mkDefault true;
    programs.dconf.enable = lib.mkDefault true;

    # Xwayland is partly hardcoded in Mir so it can't really be fully turned off, and it must be on PATH for X11 apps *and Lomiri's web browser* to work.
    # Until Mir/Lomiri can be properly used without it, force it on so everything behaves as expected.
    programs.xwayland.enable = lib.mkForce true;

    services.accounts-daemon.enable = true;

    services.ayatana-indicators = {
      enable = true;
      packages = (with pkgs; [
        ayatana-indicator-datetime
        ayatana-indicator-messages
        ayatana-indicator-session
      ]) ++ (with pkgs.lomiri; [
        telephony-service
      ]);
    };

    services.udisks2.enable = true;
    services.upower.enable = true;
    services.geoclue2.enable = true;

    services.gnome.evolution-data-server = {
      enable = true;
      plugins = with pkgs; [
        # TODO: lomiri.address-book-service
      ];
    };

    services.telepathy.enable = true;

    services.displayManager = {
      defaultSession = lib.mkDefault "lomiri";
      sessionPackages = with pkgs.lomiri; [ lomiri-session ];
    };

    services.xserver = {
      enable = lib.mkDefault true;
      displayManager.lightdm = {
        enable = lib.mkDefault true;
        greeters.lomiri.enable = lib.mkDefault true;
      };
    };

    environment.pathsToLink = [
      # Configs for inter-app data exchange system
      "/share/content-hub/peers"
      # Configs for inter-app URL requests
      "/share/lomiri-url-dispatcher/urls"
      # Splash screens & other images for desktop apps launched via lomiri-app-launch
      "/share/lomiri-app-launch"
      # TODO Try to get maliit stuff working
      "/share/maliit/plugins"
      # Data
      "/share/locale" # TODO LUITK hardcoded default locale path, fix individual apps to not rely on it
      "/share/sounds"
      "/share/wallpapers"
    ];

    systemd.user.services = {
      # Unconditionally run service that collects system-installed URL handlers before LUD
      # TODO also run user-installed one?
      "lomiri-url-dispatcher-update-system-dir" = {
        description = "Lomiri URL dispatcher system directory updater";
        wantedBy = [ "lomiri-url-dispatcher.service" ];
        before = [ "lomiri-url-dispatcher.service" ];
        serviceConfig = {
          Type = "oneshot";
          ExecStart = "${pkgs.lomiri.lomiri-url-dispatcher}/libexec/lomiri-url-dispatcher/lomiri-update-directory /run/current-system/sw/share/lomiri-url-dispatcher/urls/";
        };
      };
    };

    systemd.services = {
      "dbus-com.lomiri.UserMetrics" = {
        serviceConfig = {
          Type = "dbus";
          BusName = "com.lomiri.UserMetrics";
          User = "usermetrics";
          StandardOutput = "syslog";
          SyslogIdentifier = "com.lomiri.UserMetrics";
          ExecStart = "${pkgs.lomiri.libusermetrics}/libexec/libusermetrics/usermetricsservice";
        } // lib.optionalAttrs (!config.security.apparmor.enable) {
          # Due to https://gitlab.com/ubports/development/core/libusermetrics/-/issues/8, auth must be disabled when not using AppArmor, lest the next database usage breaks
          Environment = "USERMETRICS_NO_AUTH=1";
        };
      };
    };

    users.users.usermetrics = {
      group = "usermetrics";
      home = "/var/lib/usermetrics";
      createHome = true;
      isSystemUser = true;
    };

    users.groups.usermetrics = { };

    # TODO content-hub cannot pass files between applications without asking AA for permissions. And alot of the Lomiri stack is designed with AA availability in mind. This might be a requirement to be closer to upstream?
    # But content-hub currently fails to pass files between applications even with AA enabled, and we can get away without AA in many places. Let's see how this develops before requiring this for good.
    # security.apparmor.enable = true;
  };

  meta.maintainers = lib.teams.lomiri.members;
}