forked from mirrors/nixpkgs
nixos/e16: add e16 module
This commit is contained in:
parent
86c72072fd
commit
728c4f81b8
|
@ -15,6 +15,7 @@ in
|
||||||
./cwm.nix
|
./cwm.nix
|
||||||
./clfswm.nix
|
./clfswm.nix
|
||||||
./dwm.nix
|
./dwm.nix
|
||||||
|
./e16.nix
|
||||||
./evilwm.nix
|
./evilwm.nix
|
||||||
./exwm.nix
|
./exwm.nix
|
||||||
./fluxbox.nix
|
./fluxbox.nix
|
||||||
|
|
26
nixos/modules/services/x11/window-managers/e16.nix
Normal file
26
nixos/modules/services/x11/window-managers/e16.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue