diff --git a/flake.nix b/flake.nix index 087c653..4612d38 100644 --- a/flake.nix +++ b/flake.nix @@ -29,12 +29,12 @@ ... }@inputs: { - darwinConfigurations."Mac-von-Jan" = darwin.lib.darwinSystem { + darwinConfigurations.malus = darwin.lib.darwinSystem { system = "aarch64-darwin"; specialArgs = { inherit inputs; }; - modules = [ ./hosts/mac/configuration.nix ]; + modules = [ ./hosts/malus/configuration.nix ]; }; nixosConfigurations.galanthus = nixpkgs.lib.nixosSystem { diff --git a/hosts/mac/configuration.nix b/hosts/malus/configuration.nix similarity index 98% rename from hosts/mac/configuration.nix rename to hosts/malus/configuration.nix index 4ee53f5..d9127db 100644 --- a/hosts/mac/configuration.nix +++ b/hosts/malus/configuration.nix @@ -11,7 +11,7 @@ name = "jan"; home = "/Users/jan"; }; - networking.hostName = "Mac-von-Jan"; + networking.hostName = "malus"; nix = { enable = false; diff --git a/modules/secrets/secrets.nix b/modules/secrets/secrets.nix index eb3f3ca..c68fd3c 100644 --- a/modules/secrets/secrets.nix +++ b/modules/secrets/secrets.nix @@ -1,8 +1,8 @@ let - Mac-von-Jan = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPTpgedzJ7vs3GMOjUeQGkAzGhNZRhvMMz9Z1whaWieE"; + malus = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPTpgedzJ7vs3GMOjUeQGkAzGhNZRhvMMz9Z1whaWieE"; galanthus = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIZYQao2OKQxyic+I327VZ7lQECh9hSS9cgsls3e/a1u"; all = [ - Mac-von-Jan + malus galanthus ]; in