nixpkgs/nixos/modules/services/x11/desktop-managers/lxqt.nix

69 lines
1.6 KiB
Nix
Raw Normal View History

2016-10-03 22:12:17 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
# Remove packages of ys from xs, based on their names
removePackagesByName = xs: ys:
let
pkgName = drv: (builtins.parseDrvName drv.name).name;
ysNames = map pkgName ys;
in
filter (x: !(builtins.elem (pkgName x) ysNames)) xs;
2016-10-03 22:12:17 +00:00
xcfg = config.services.xserver;
cfg = xcfg.desktopManager.lxqt;
in
{
options = {
services.xserver.desktopManager.lxqt.enable = mkOption {
type = types.bool;
default = false;
description = "Enable the LXQt desktop manager";
};
environment.lxqt.excludePackages = mkOption {
default = [];
example = literalExample "[ pkgs.lxqt.qterminal ]";
type = types.listOf types.package;
description = "Which LXQt packages to exclude from the default environment";
};
2016-10-03 22:12:17 +00:00
};
2016-10-03 22:12:17 +00:00
config = mkIf (xcfg.enable && cfg.enable) {
services.xserver.desktopManager.session = singleton {
name = "lxqt";
bgSupport = true;
2016-10-03 22:12:17 +00:00
start = ''
2017-11-02 02:14:46 +00:00
exec ${pkgs.lxqt.lxqt-session}/bin/startlxqt
2016-10-03 22:12:17 +00:00
'';
};
environment.systemPackages =
pkgs.lxqt.preRequisitePackages ++
pkgs.lxqt.corePackages ++
(removePackagesByName
pkgs.lxqt.optionalPackages
config.environment.lxqt.excludePackages);
2016-10-03 22:12:17 +00:00
# Link some extra directories in /run/current-system/software/share
environment.pathsToLink = [
"/share/desktop-directories"
2016-10-05 23:39:03 +00:00
"/share/icons"
"/share/lxqt"
2016-10-03 22:12:17 +00:00
];
environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.gvfs}/lib/gio/modules" ];
services.upower.enable = config.powerManagement.enable;
2016-10-03 22:12:17 +00:00
};
2016-10-03 22:12:17 +00:00
}