flake/hosts/aristotle/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

21 lines
635 B
Nix

{...}: {
imports = [
# OS
../../nixos/profiles/laptop
../../nixos/profiles/common/opt-in/zram-generator.nix
../../nixos/profiles/common/opt-in/clash-meta-client
../../nixos/profiles/common/opt-in/gaming
../../nixos/profiles/common/opt-in/torrenting
# Hardware
./hardware-configuration.nix
./anti-feature.nix
../../nixos/profiles/common/opt-in/lanzaboote.nix
../../nixos/profiles/common/opt-in/impermanence.nix
../../nixos/profiles/common/opt-in/disko.nix
];
networking.hostName = "aristotle";
time.timeZone = "Asia/Shanghai";
_module.args.disks = ["/dev/nvme0n1"]; # Disko
}