mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
27 lines
480 B
Nix
27 lines
480 B
Nix
{ 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 ];
|
|
};
|
|
}
|