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

43 lines
602 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.xserver.windowManager.icewm;
in
{
###### interface
options = {
services.xserver.windowManager.icewm.enable = mkOption {
default = false;
description = "Enable the IceWM window manager.";
};
};
###### implementation
config = mkIf cfg.enable {
services.xserver.windowManager.session = singleton
{ name = "icewm";
start =
''
${pkgs.icewm}/bin/icewm &
waitPID=$!
'';
};
environment.systemPackages = [ pkgs.icewm ];
};
}