Home manager using up-to-date emacs
This commit is contained in:
parent
06a0e459fb
commit
a06d4cb2e3
1 changed files with 6 additions and 1 deletions
|
|
@ -1,10 +1,14 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ inputs, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./modules
|
||||
];
|
||||
|
||||
nixpkgs.overlays = [
|
||||
inputs.emacs-overlay.overlays.default
|
||||
];
|
||||
|
||||
# Home Manager needs a bit of information about you and the paths it should
|
||||
# manage.
|
||||
home.username = "benson";
|
||||
|
|
@ -91,6 +95,7 @@
|
|||
};
|
||||
|
||||
emacs = {
|
||||
package = pkgs.emacs-git;
|
||||
enable = true;
|
||||
extraPackages = epkgs: with epkgs; [
|
||||
mu4e
|
||||
|
|
|
|||
Loading…
Reference in a new issue