Refactor the whole configuration #1

Merged
caem merged 354 commits from refactor into master 2025-02-01 14:05:16 +01:00
2 changed files with 14 additions and 5 deletions
Showing only changes of commit 4891017bc3 - Show all commits

View file

@ -1,5 +0,0 @@
{ ... }:
{
}

View file

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
services.emacs = {
enable = true;
package = pkgs.emacs;
};
programs.emacs = {
enable = true;
package = pkgs.emacs;
defaultEditor = true;
};
}