6aeaa1019c
yeahwm is a small window manager for X11, inspired by evilwm
26 lines
497 B
Nix
26 lines
497 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.xserver.windowManager.yeahwm;
|
|
in
|
|
{
|
|
###### interface
|
|
options = {
|
|
services.xserver.windowManager.yeahwm.enable = mkEnableOption "yeahwm";
|
|
};
|
|
|
|
###### implementation
|
|
config = mkIf cfg.enable {
|
|
services.xserver.windowManager.session = singleton {
|
|
name = "yeahwm";
|
|
start = ''
|
|
${pkgs.yeahwm}/bin/yeahwm &
|
|
waitPID=$!
|
|
'';
|
|
};
|
|
environment.systemPackages = [ pkgs.yeahwm ];
|
|
};
|
|
}
|