NixOS 改 hostname Posted on 2025-09-14 修改 /etc/nixos/configuration.nix : 12345{ config, pkgs, ... }:{ networking.hostName = "[HOSTNAME]";} 有用 flakes 的話也要改 /etc/nixos/flake.nix : 1234567891011{ outputs = { self, nixpkgs }: let system = "x86_64-linux"; in { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { inherit system; modules = [ ./configuration.nix ]; }; };} 把 [HOSTNAME] 改成要的 hostname,接著 rebuild: 1sudo nixos-rebuild switch --flake .#[HOSTNAME] 最後重開機!