Guanran Wang
8ee5e9dd3e
- 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
21 lines
635 B
Nix
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
|
|
}
|