From 39b0be4607480f8e990cae8b9223e7b4f343364d Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Sat, 14 Sep 2024 02:01:36 -0400 Subject: [PATCH] feat!: change hostname to `toki-aether` --- config.nix | 2 +- flake.nix | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config.nix b/config.nix index ea8c1a7..d42fd62 100644 --- a/config.nix +++ b/config.nix @@ -11,7 +11,7 @@ time.timeZone = "America/New_York"; - networking.hostName = "toki-rpi5"; + networking.hostName = "toki-aether"; networking.wireless.iwd.enable = true; networking.wireless.iwd.settings = { Settings.AutoConnect = true; diff --git a/flake.nix b/flake.nix index 5f06582..15a1dba 100644 --- a/flake.nix +++ b/flake.nix @@ -14,7 +14,7 @@ inputs = { outputs = inputs@{ self, nixpkgs, agenix, ... }: { - nixosConfigurations."toki-rpi5" = + nixosConfigurations."toki-aether" = nixpkgs.lib.nixosSystem { system = "aarch64-linux"; modules = [ @@ -23,5 +23,6 @@ outputs = inputs@{ self, nixpkgs, agenix, ... }: ./config.nix ]; }; + nixosConfigurations.default = self.nixosConfigurations."toki-aether"; }; }