18 lines
422 B
Nix
18 lines
422 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
with lib; let
|
||
|
cfg = config.modules.programs.emacs;
|
||
|
username = config.modules.other.system.username;
|
||
|
in {
|
||
|
options.modules.programs.emacs.enable = mkEnableOption "emacs";
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
home-manager.users.${username} = {
|
||
|
programs.emacs = {
|
||
|
enable = true;
|
||
|
package = pkgs.emacs;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|