refactor: rename config dir to lyrathorpe and host labels

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.
This commit is contained in:
Emma Thorpe
2026-06-02 15:06:10 +00:00
parent 5b6fae13fb
commit 6ac2a80c8d
9 changed files with 11 additions and 11 deletions
+11 -11
View File
@@ -53,7 +53,7 @@
# Shared scaffolding for every host: common user, overlays, home-manager. # Shared scaffolding for every host: common user, overlays, home-manager.
baseModules = [ baseModules = [
./emmathorpe/user.nix ./lyrathorpe/user.nix
{ {
nixpkgs.overlays = overlays; nixpkgs.overlays = overlays;
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) unfreePackages; nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) unfreePackages;
@@ -103,32 +103,32 @@
# give it a name, its `system`, the owning user, and the module lists. # give it a name, its `system`, the owning user, and the module lists.
# mapAttrs below turns each entry into a nixosConfiguration of the same name. # mapAttrs below turns each entry into a nixosConfiguration of the same name.
hosts = { hosts = {
emmathorpe-mbp = { lyrathorpe-mbp = {
system = "aarch64-linux"; system = "aarch64-linux";
username = "lyrathorpe"; username = "lyrathorpe";
fullName = "Lyra Thorpe"; fullName = "Lyra Thorpe";
modules = [ modules = [
./system/machine/MBP-Asahi/configuration.nix ./system/machine/MBP-Asahi/configuration.nix
nixos-apple-silicon.nixosModules.default nixos-apple-silicon.nixosModules.default
./emmathorpe/swaywm.nix ./lyrathorpe/swaywm.nix
]; ];
homeModules = [ homeModules = [
./emmathorpe/home ./lyrathorpe/home
./emmathorpe/home/desktop.nix ./lyrathorpe/home/desktop.nix
]; ];
}; };
emmathorpe-x1c = { lyrathorpe-x1c = {
system = "x86_64-linux"; system = "x86_64-linux";
username = "lyrathorpe"; username = "lyrathorpe";
fullName = "Lyra Thorpe"; fullName = "Lyra Thorpe";
modules = [ modules = [
./system/machine/X1/configuration.nix ./system/machine/X1/configuration.nix
./emmathorpe/swaywm.nix ./lyrathorpe/swaywm.nix
]; ];
homeModules = [ homeModules = [
./emmathorpe/home ./lyrathorpe/home
./emmathorpe/home/desktop.nix ./lyrathorpe/home/desktop.nix
]; ];
}; };
@@ -139,10 +139,10 @@
modules = [ modules = [
./system/machine/EDaaS/configuration.nix ./system/machine/EDaaS/configuration.nix
nixos-wsl.nixosModules.default nixos-wsl.nixosModules.default
./emmathorpe/swaywm.nix ./lyrathorpe/swaywm.nix
]; ];
homeModules = [ homeModules = [
./emmathorpe/home ./lyrathorpe/home
./system/modules/work/default.nix ./system/modules/work/default.nix
]; ];
}; };