Added Emacs nix module and modified things here and there.
This commit is contained in:
parent
d4df25abdf
commit
859036ba7c
10 changed files with 85 additions and 82 deletions
12
nix/modules/emacs.nix
Normal file
12
nix/modules/emacs.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, lib, pkgs, inputs, ...}:
|
||||
|
||||
{
|
||||
programs.emacs = {
|
||||
enable = true;
|
||||
package = pkgs.emacs-gtk;
|
||||
extraPackages = epkgs: [
|
||||
epkgs.nix-mode
|
||||
epkgs.nixfmt
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue