hosts/alyssum: init

This commit is contained in:
Cilly Leang 2026-05-28 18:08:15 +10:00
parent cc43450dd1
commit 0f7393714f
Signed by: cilly
GPG key ID: 6500251E087653C9
6 changed files with 90 additions and 0 deletions

28
hosts/alyssum/default.nix Normal file
View file

@ -0,0 +1,28 @@
{ inputs, modules, modulesPath, ... }: {
networking.hostName = "alyssum";
system.stateVersion = "25.11";
time.timeZone = "Australia/Melbourne";
age.secrets = {
# acme_dns.file = ../../secrets/acme_dns.age;
};
imports = with modules.system; [
(modulesPath + "/profiles/qemu-guest.nix")
home-manager
base
kernel
nix-stable
packages
security
./filesystem.nix
./kernel.nix
./networking.nix
../../users/hana
];
me.environment = "headless";
}