diff --git a/flake.nix b/flake.nix index d38585f..777636c 100644 --- a/flake.nix +++ b/flake.nix @@ -53,7 +53,7 @@ # Shared scaffolding for every host: common user, overlays, home-manager. baseModules = [ - ./emmathorpe/user.nix + ./lyrathorpe/user.nix { nixpkgs.overlays = overlays; 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. # mapAttrs below turns each entry into a nixosConfiguration of the same name. hosts = { - emmathorpe-mbp = { + lyrathorpe-mbp = { system = "aarch64-linux"; username = "lyrathorpe"; fullName = "Lyra Thorpe"; modules = [ ./system/machine/MBP-Asahi/configuration.nix nixos-apple-silicon.nixosModules.default - ./emmathorpe/swaywm.nix + ./lyrathorpe/swaywm.nix ]; homeModules = [ - ./emmathorpe/home - ./emmathorpe/home/desktop.nix + ./lyrathorpe/home + ./lyrathorpe/home/desktop.nix ]; }; - emmathorpe-x1c = { + lyrathorpe-x1c = { system = "x86_64-linux"; username = "lyrathorpe"; fullName = "Lyra Thorpe"; modules = [ ./system/machine/X1/configuration.nix - ./emmathorpe/swaywm.nix + ./lyrathorpe/swaywm.nix ]; homeModules = [ - ./emmathorpe/home - ./emmathorpe/home/desktop.nix + ./lyrathorpe/home + ./lyrathorpe/home/desktop.nix ]; }; @@ -139,10 +139,10 @@ modules = [ ./system/machine/EDaaS/configuration.nix nixos-wsl.nixosModules.default - ./emmathorpe/swaywm.nix + ./lyrathorpe/swaywm.nix ]; homeModules = [ - ./emmathorpe/home + ./lyrathorpe/home ./system/modules/work/default.nix ]; }; diff --git a/emmathorpe/home/default.nix b/lyrathorpe/home/default.nix similarity index 100% rename from emmathorpe/home/default.nix rename to lyrathorpe/home/default.nix diff --git a/emmathorpe/home/desktop.nix b/lyrathorpe/home/desktop.nix similarity index 100% rename from emmathorpe/home/desktop.nix rename to lyrathorpe/home/desktop.nix diff --git a/emmathorpe/home/editor.nix b/lyrathorpe/home/editor.nix similarity index 100% rename from emmathorpe/home/editor.nix rename to lyrathorpe/home/editor.nix diff --git a/emmathorpe/home/git.nix b/lyrathorpe/home/git.nix similarity index 100% rename from emmathorpe/home/git.nix rename to lyrathorpe/home/git.nix diff --git a/emmathorpe/home/shell.nix b/lyrathorpe/home/shell.nix similarity index 100% rename from emmathorpe/home/shell.nix rename to lyrathorpe/home/shell.nix diff --git a/emmathorpe/home/sway.nix b/lyrathorpe/home/sway.nix similarity index 100% rename from emmathorpe/home/sway.nix rename to lyrathorpe/home/sway.nix diff --git a/emmathorpe/swaywm.nix b/lyrathorpe/swaywm.nix similarity index 100% rename from emmathorpe/swaywm.nix rename to lyrathorpe/swaywm.nix diff --git a/emmathorpe/user.nix b/lyrathorpe/user.nix similarity index 100% rename from emmathorpe/user.nix rename to lyrathorpe/user.nix