flake/hosts/aristotle/default.nix

26 lines
660 B
Nix
Raw Normal View History

{...}: {
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
# Hardware
./hardware-configuration.nix
2024-02-07 01:51:49 +00:00
./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
2024-02-13 11:19:55 +00:00
services.tailscale = {
enable = true;
openFirewall = true;
};
}