hosts/dandelion: re-init

This commit is contained in:
LavaDesu 2025-05-19 19:43:57 +10:00
parent ee0a768c03
commit 3bacc817a2
Signed by: cilly
GPG key ID: 6500251E087653C9
9 changed files with 160 additions and 7 deletions

View file

@ -0,0 +1,32 @@
{ modules, modulesPath, ... }: {
networking.hostName = "dandelion";
system.stateVersion = "23.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-stable
base
kernel
nix-stable
packages
security
modules.services.nginx
modules.services.postgres
./filesystem.nix
./kernel.nix
./networking.nix
./transmission-container.nix
../../users/hana
];
me.environment = "headless";
}