flakes/hosts/alyssum/default.nix
Cilly Leang d0e090bb68
Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
hosts/alyssum: enable tailscale
2026-05-28 22:10:44 +10:00

33 lines
608 B
Nix

{ lib, modules, modulesPath, ... }: {
networking.hostName = "alyssum";
system.stateVersion = "25.11";
time.timeZone = "Australia/Melbourne";
age.secrets = {
wpa_conf = {
file = ../../secrets/wpa_conf.age;
path = "/etc/wpa_supplicant/imperative.conf";
symlink = false;
};
};
imports = with modules.system; [
(modulesPath + "/profiles/qemu-guest.nix")
home-manager
base
kernel
nix-stable
packages
security
tailscale
./filesystem.nix
./kernel.nix
./networking.nix
../../users/hana
];
me.environment = "headless";
}