flakes/hosts/alyssum/default.nix

34 lines
608 B
Nix
Raw Normal View History

{ lib, modules, modulesPath, ... }: {
2026-05-28 18:08:15 +10:00
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;
};
2026-05-28 18:08:15 +10:00
};
imports = with modules.system; [
(modulesPath + "/profiles/qemu-guest.nix")
home-manager
base
kernel
nix-stable
packages
security
2026-05-28 22:10:44 +10:00
tailscale
2026-05-28 18:08:15 +10:00
./filesystem.nix
./kernel.nix
./networking.nix
../../users/hana
];
me.environment = "headless";
}