nixpkgs/nixos/modules/services/x11/window-managers/herbstluftwm.nix

39 lines
954 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2013-11-09 02:38:15 +01:00
with lib;
2013-11-09 02:38:15 +01:00
let
cfg = config.services.xserver.windowManager.herbstluftwm;
in
{
options = {
services.xserver.windowManager.herbstluftwm = {
enable = mkEnableOption "herbstluftwm";
configFile = mkOption {
default = null;
type = with types; nullOr path;
description = ''
Path to the herbstluftwm configuration file. If left at the
default value, $XDG_CONFIG_HOME/herbstluftwm/autostart will
be used.
'';
};
};
2013-11-09 02:38:15 +01:00
};
config = mkIf cfg.enable {
services.xserver.windowManager.session = singleton {
name = "herbstluftwm";
start =
let configFileClause = optionalString
(cfg.configFile != null)
''-c "${cfg.configFile}"''
;
in "${pkgs.herbstluftwm}/bin/herbstluftwm ${configFileClause}";
2013-11-09 02:38:15 +01:00
};
environment.systemPackages = [ pkgs.herbstluftwm ];
};
}