f19ed980a2
Sawfish is a versatile, Lisp-based window manager In that commit I include all Sawfish stack: - librep, a lisp system; - rep-gtk, bindings for gtk - sawfish, the window manager
29 lines
577 B
Nix
29 lines
577 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.xserver.windowManager.sawfish;
|
|
in
|
|
{
|
|
###### interface
|
|
options = {
|
|
services.xserver.windowManager.sawfish.enable = mkOption {
|
|
default = false;
|
|
description = "Enable the Sawfish window manager.";
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
config = mkIf cfg.enable {
|
|
services.xserver.windowManager.session = singleton {
|
|
name = "sawfish";
|
|
start = ''
|
|
${pkgs.sawfish}/bin/sawfish &
|
|
waitPID=$!
|
|
'';
|
|
};
|
|
environment.systemPackages = [ pkgs.sawfish ];
|
|
};
|
|
}
|