nichts/modules/gui/emacs.nix
2024-04-29 22:18:58 +02:00

17 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;
};
};
};
}