2022-07-15 13:11:54 +02:00
|
|
|
{ config
|
|
|
|
, lib
|
|
|
|
, pkgs
|
|
|
|
, inputs
|
|
|
|
, ...
|
|
|
|
}:
|
2021-09-09 21:55:28 +02:00
|
|
|
|
2022-03-30 10:55:57 +02:00
|
|
|
with lib;
|
2021-09-09 21:55:28 +02:00
|
|
|
let
|
2022-07-15 13:11:54 +02:00
|
|
|
cfg = config.my.programs.emacs;
|
2023-01-30 10:39:29 +01:00
|
|
|
myEmacs = pkgs.emacsPgtkWithPackages;
|
2022-07-15 13:11:54 +02:00
|
|
|
in
|
|
|
|
{
|
2022-10-15 20:00:09 +02:00
|
|
|
options.my.programs.emacs.enable = mkEnableOption "emacs";
|
|
|
|
|
2022-07-15 13:11:54 +02:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
my.shell.aliases = {
|
2022-12-23 12:39:07 +01:00
|
|
|
emacs = "emacsclient -nw -a 'emacs -nw'";
|
2022-07-15 13:11:54 +02:00
|
|
|
};
|
2022-12-23 12:39:07 +01:00
|
|
|
fonts.fonts = with pkgs; [
|
|
|
|
emacs-all-the-icons-fonts
|
|
|
|
(iosevka-bin.override { variant = "aile"; })
|
|
|
|
];
|
2023-01-30 10:39:29 +01:00
|
|
|
users.users.moritz.packages = [ myEmacs ];
|
2022-10-06 20:32:21 +02:00
|
|
|
home-manager.users.moritz = {
|
|
|
|
home.sessionPath = [ "/home/moritz/.config/emacs/bin/" ];
|
|
|
|
services.emacs = {
|
|
|
|
enable = true;
|
2023-01-30 10:39:29 +01:00
|
|
|
package = myEmacs;
|
2022-10-06 20:32:21 +02:00
|
|
|
};
|
2022-03-23 12:41:04 +01:00
|
|
|
};
|
2021-09-09 21:55:28 +02:00
|
|
|
};
|
|
|
|
}
|