2955b2fcf4
Now the default way to define NixOS window manager modules is to use mkEnableOption to describe the module itself. In this commit, all files on nixos/modules/services/x11/window-managers are changed.
25 lines
455 B
Nix
25 lines
455 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.xserver.windowManager.clfswm;
|
|
in
|
|
|
|
{
|
|
options = {
|
|
services.xserver.windowManager.clfswm.enable = mkEnableOption "clfswm";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.xserver.windowManager.session = singleton {
|
|
name = "clfswm";
|
|
start = ''
|
|
${pkgs.clfswm}/bin/clfswm &
|
|
waitPID=$!
|
|
'';
|
|
};
|
|
environment.systemPackages = [ pkgs.clfswm ];
|
|
};
|
|
}
|