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

@@ -219,7 +219,11 @@
system = "x86_64-linux";
modules = nixosModules ++ [
./machines/john-endesktop/configuration.nix
# Minimal server - no home-manager needed
inputs.home-manager.nixosModules.home-manager
{
home-manager.users.johno = import ./home/home-server.nix;
home-manager.extraSpecialArgs = { inherit system; };
}
];
};

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;
};