Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Sep 3, 2017
1 parent 3383f2f commit c80793e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion nixos/modules/services/x11/window-managers/exwm.nix
Expand Up @@ -24,6 +24,13 @@ in
type = lib.types.bool;
description = "Enable an uncustomised exwm configuration.";
};
package = mkOption {
default = exwm-emacs;
type = types.package;
description = ''
Override the emacs package. Please note that you jjj
'';
};
extraPackages = mkOption {
default = self: [];
example = literalExample ''
Expand All @@ -46,7 +53,7 @@ in
services.xserver.windowManager.session = singleton {
name = "exwm";
start = ''
${exwm-emacs}/bin/emacs -l ${loadScript}
${cfg.package}/bin/emacs -l ${loadScript}
'';
};
environment.systemPackages = [ exwm-emacs ];
Expand Down

0 comments on commit c80793e

Please sign in to comment.