nixos/e16: add e16 module

This commit is contained in:
José Romildo Malaquias 2021-04-12 16:00:05 -03:00
parent 86c72072fd
commit 728c4f81b8
2 changed files with 27 additions and 0 deletions

View file

@ -15,6 +15,7 @@ in
./cwm.nix
./clfswm.nix
./dwm.nix
./e16.nix
./evilwm.nix
./exwm.nix
./fluxbox.nix

View file

@ -0,0 +1,26 @@
{ config , lib , pkgs , ... }:
with lib;
let
cfg = config.services.xserver.windowManager.e16;
in
{
###### interface
options = {
services.xserver.windowManager.e16.enable = mkEnableOption "e16";
};
###### implementation
config = mkIf cfg.enable {
services.xserver.windowManager.session = singleton {
name = "E16";
start = ''
${pkgs.e16}/bin/e16 &
waitPID=$!
'';
};
environment.systemPackages = [ pkgs.e16 ];
};
}