IceWM: 1.3.8 -> 1.3.10

A complete rewrite in comparision to previous expression.
This commit is contained in:
AndersonTorres
2015-07-26 01:08:05 -03:00
parent 6ad8fab785
commit bdd20cedc1
3 changed files with 29 additions and 37 deletions
@@ -3,29 +3,16 @@
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.";
};
services.xserver.windowManager.icewm.enable = mkEnableOption "oroborus";
};
###### implementation
config = mkIf cfg.enable {
services.xserver.windowManager.session = singleton
{ name = "icewm";
start =
@@ -36,7 +23,5 @@ in
};
environment.systemPackages = [ pkgs.icewm ];
};
}