mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-12 10:43:16 +01:00
This allows a custom Emacs package to be used for EXWM (see #99424) Co-authored-by: Lin Jian <me@linj.tech>
75 lines
1.9 KiB
Nix
75 lines
1.9 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.xserver.windowManager.exwm;
|
|
loadScript = pkgs.writeText "emacs-exwm-load" ''
|
|
${cfg.loadScript}
|
|
'';
|
|
packages = epkgs: cfg.extraPackages epkgs ++ [ epkgs.exwm ];
|
|
exwm-emacs = cfg.package.pkgs.withPackages packages;
|
|
in
|
|
{
|
|
|
|
imports = [
|
|
(mkRemovedOptionModule [ "services" "xserver" "windowManager" "exwm" "enableDefaultConfig" ]
|
|
"The upstream EXWM project no longer provides a default configuration, instead copy (parts of) exwm-config.el to your local config."
|
|
)
|
|
];
|
|
|
|
options = {
|
|
services.xserver.windowManager.exwm = {
|
|
enable = mkEnableOption "exwm";
|
|
loadScript = mkOption {
|
|
default = "(require 'exwm)";
|
|
type = types.lines;
|
|
example = ''
|
|
(require 'exwm)
|
|
(exwm-enable)
|
|
'';
|
|
description = ''
|
|
Emacs lisp code to be run after loading the user's init
|
|
file.
|
|
'';
|
|
};
|
|
package = mkPackageOption pkgs "Emacs" {
|
|
default = "emacs";
|
|
example = [ "emacs-gtk" ];
|
|
};
|
|
extraPackages = mkOption {
|
|
type = types.functionTo (types.listOf types.package);
|
|
default = epkgs: [ ];
|
|
defaultText = literalExpression "epkgs: []";
|
|
example = literalExpression ''
|
|
epkgs: [
|
|
epkgs.emms
|
|
epkgs.magit
|
|
epkgs.proofgeneral
|
|
]
|
|
'';
|
|
description = ''
|
|
Extra packages available to Emacs. The value must be a
|
|
function which receives the attrset defined in
|
|
{var}`emacs.pkgs` as the sole argument.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.xserver.windowManager.session = singleton {
|
|
name = "exwm";
|
|
start = ''
|
|
${exwm-emacs}/bin/emacs -l ${loadScript}
|
|
'';
|
|
};
|
|
environment.systemPackages = [ exwm-emacs ];
|
|
};
|
|
}
|