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
459 B
Nix
25 lines
459 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.xserver.windowManager.bspwm;
|
|
in
|
|
|
|
{
|
|
options = {
|
|
services.xserver.windowManager.bspwm.enable = mkEnableOption "bspwm";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.xserver.windowManager.session = singleton {
|
|
name = "bspwm";
|
|
start = "
|
|
${pkgs.sxhkd}/bin/sxhkd &
|
|
${pkgs.bspwm}/bin/bspwm
|
|
";
|
|
};
|
|
environment.systemPackages = [ pkgs.bspwm ];
|
|
};
|
|
}
|