Enable emacs service

This commit is contained in:
Andreas Zweili 2022-04-16 16:41:56 +02:00
parent cb5aa6ace1
commit 17c716d2d4
2 changed files with 10 additions and 3 deletions

View File

@ -6,7 +6,7 @@
./software/calibre
./software/czkawka
./software/dunst
./software/emacs
(import ./software/emacs { inherit custom pkgs; })
./software/email
./software/evince
./software/git
@ -53,6 +53,9 @@
gtk.theme.name = "Arc-Darker";
xsession.numlock.enable = true;
xsession = {
enable = true;
numlock.enable = true;
};
services.network-manager-applet.enable = true;
}

View File

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ custom, pkgs, ... }:
{
programs.emacs = {
enable = true;
@ -81,4 +81,8 @@
home.file.".emacs.d/variables.el".source = ./emacs.d/variables.el;
home.file.".emacs.d/snippets".source = ./emacs.d/snippets;
home.file.".Eshell/alias".source = ./Eshell/alias;
services.emacs = {
enable = true;
client.enable = true;
};
}