aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/modules/workstation/emacs/default.nix
blob: 57949cb333b79fc78da63f4c5c7cc0a9d10d1db2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * A custom wrapper module to configure an emacs installation.
 *
 */

{ config, lib, pkgs, home-manager, options, ...} @ args:

let cfg = config.libkookie.emacs;
in
with lib;
{
  options.libkookie.emacs = {
    enable = mkEnableOption "emacs configuration module";
  };

  config = (lib.trace args.options {}); # (import ./core.nix args);
}