flake/hosts/plato/default.nix
Guanran Wang 8ee5e9dd3e
hosts: rename hostnames to lowercase
- Following RFC 952 and RFC 1123.
  Hostnames are not case-sensitive; however, uppercase letters were typically avoided to enhance readability.

- I accidentally rm -rf'ed ./git, had to re-commit everything
2024-02-11 22:10:03 +08:00

13 lines
275 B
Nix

# iMac 18,3 (2017)
{...}: {
imports = [
../../darwin/profiles/desktop
../../darwin/profiles/common/opt-in/clash-meta-client.nix
./hardware-configuration.nix
];
networking.hostName = "plato";
time.timeZone = "Asia/Shanghai";
system.stateVersion = 4;
}