0a37316d6c
This commit replaces a lot of usages of `mkOption` with the package type, to be `mkPackageOption`, in order to reduce the amount of code.
27 lines
554 B
Nix
27 lines
554 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.xserver.windowManager.clfswm;
|
|
in
|
|
|
|
{
|
|
options = {
|
|
services.xserver.windowManager.clfswm = {
|
|
enable = mkEnableOption (lib.mdDoc "clfswm");
|
|
package = mkPackageOption pkgs [ "lispPackages" "clfswm" ] { };
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.xserver.windowManager.session = singleton {
|
|
name = "clfswm";
|
|
start = ''
|
|
${cfg.package}/bin/clfswm &
|
|
waitPID=$!
|
|
'';
|
|
};
|
|
environment.systemPackages = [ cfg.package ];
|
|
};
|
|
}
|