summary refs log tree commit diff
path: root/nixos/modules/services/x11/desktop-managers/lumina.nix
blob: e68284316f3ce6f81ed286eb970aa2d90d765565 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ config, lib, pkgs, ... }:

with lib;

let

  xcfg = config.services.xserver;
  cfg = xcfg.desktopManager.lumina;

in

{
  options = {

    services.xserver.desktopManager.lumina.enable = mkOption {
      type = types.bool;
      default = false;
      description = "Enable the Lumina desktop manager";
    };

  };


  config = mkIf cfg.enable {

    services.xserver.desktopManager.session = singleton {
      name = "lumina";
      start = ''
        exec ${pkgs.lumina}/bin/start-lumina-desktop
      '';
    };

    environment.systemPackages = [
      pkgs.fluxbox
      pkgs.libsForQt5.kwindowsystem
      pkgs.lumina
      pkgs.numlockx
      pkgs.qt5.qtsvg
      pkgs.xscreensaver
    ];

    # Link some extra directories in /run/current-system/software/share
    environment.pathsToLink = [
      "/share/lumina"
      # FIXME: modules should link subdirs of `/share` rather than relying on this
      "/share"
    ];

  };
}