forked from tA/Iwakura
10 lines
156 B
Nix
10 lines
156 B
Nix
|
{ pkgs, ... }: {
|
||
|
nixpkgs.overlays = [
|
||
|
(import ../../overlays/emacs.nix)
|
||
|
];
|
||
|
services.emacs = {
|
||
|
enable = true;
|
||
|
defaultEditor = true;
|
||
|
};
|
||
|
}
|