Introduces non-server home-manager configs

Allows home-manager configs to be done on a server/non-server basis

Provides an example config by moving emacs to its own space (behind a
lib.optionals so only non-server machines accept it)

marks artemision and rhapsody-in-green as explicitly non-server machines

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-05-21 13:40:16 -04:00
committed by Alice Huston
parent 32bd3b839f
commit 1589f59e3b
6 changed files with 33 additions and 9 deletions

View File

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
programs.emacs = {
enable = true;
package = pkgs.emacs29-pgtk;
};
}