Add home-manager integration for john-endesktop server

Create home-server.nix with minimal development-focused configuration
enabling base, emacs, development, and tmux roles. Update flake.nix
to wire up home-manager for the johno user on the server.
This commit is contained in:
2026-01-10 12:11:13 -08:00
parent 82fb1738c1
commit ff1fb245ac
2 changed files with 6 additions and 1 deletions

View File

@@ -9,6 +9,7 @@
# Minimal roles for server with development capability
home.roles = {
base.enable = true;
emacs.enable = true;
development.enable = true;
tmux.enable = true;
};