6ac2a80c8d
Move ./emmathorpe -> ./lyrathorpe (git mv preserves history) and rename the MBP/X1 nixosConfiguration names to lyrathorpe-mbp / lyrathorpe-x1c. The EDaaS host keeps its emmathorpe-edaas name and Emma Thorpe identity; it still imports the shared (renamed) config dir. Derivation outputs are byte-identical to before; pure relabel.
14 lines
335 B
Nix
14 lines
335 B
Nix
# Base home-manager profile, shared by every host (graphical or headless).
|
|
# Graphical hosts additionally import ./desktop.nix; the work host imports
|
|
# ../../system/modules/work/default.nix. See the host table in flake.nix.
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
./shell.nix
|
|
./git.nix
|
|
./editor.nix
|
|
];
|
|
|
|
home.stateVersion = "25.05";
|
|
}
|