Emacs service

This commit is contained in:
Nathan McCarty 2025-01-09 11:41:29 -05:00
parent 55427d9238
commit 99c4179cb5
2 changed files with 5 additions and 4 deletions

View file

@ -39,10 +39,7 @@
nixpkgs.config.allowUnfree = true;
# Machine specific configuration
programs.nushell.environmentVariables = {
VISUAL = "nvim";
EDITOR = "nvim";
};
services.emacs.defaultEditor = true;
}
)
];

View file

@ -72,4 +72,8 @@ in
))
];
};
services.emacs = {
enable = true;
client.enable = true;
};
}