flakes/hosts/dandelion/default.nix

46 lines
965 B
Nix
Raw Normal View History

2026-03-15 20:03:07 +11:00
{ inputs, modules, modulesPath, ... }: {
2025-05-19 19:43:57 +10:00
networking.hostName = "dandelion";
system.stateVersion = "23.11";
time.timeZone = "Australia/Melbourne";
age.secrets = {
acme_dns.file = ../../secrets/acme_dns.age;
2026-03-18 03:10:34 +11:00
slskd_env.file = ../../secrets/slskd_env.age;
2025-05-20 02:35:07 +10:00
wg_dandelion.file = ../../secrets/wg_dandelion.age;
2025-05-19 19:43:57 +10:00
};
imports = with modules.system; [
(modulesPath + "/profiles/qemu-guest.nix")
2026-03-15 19:50:47 +11:00
home-manager
2025-05-19 19:43:57 +10:00
base
kernel
nix-stable
packages
security
2026-05-28 21:33:57 +10:00
tailscale
wireguard
2025-05-19 19:43:57 +10:00
2026-03-15 19:41:44 +11:00
modules.services.banksia
2025-05-19 19:43:57 +10:00
modules.services.nginx
2025-05-22 22:57:47 +10:00
modules.services.unbound
2025-05-22 23:42:08 +10:00
modules.services.website
2025-05-19 19:43:57 +10:00
2026-03-15 20:03:07 +11:00
inputs.c-amethyst.nixosModule
inputs.c-beryllium.nixosModule
inputs.c-citrine.nixosModule
2026-03-17 14:37:36 +11:00
inputs.c-diamond.nixosModule
2026-03-18 03:10:34 +11:00
inputs.c-fluorite.nixosModule
2026-03-15 20:03:07 +11:00
2025-05-19 19:43:57 +10:00
./filesystem.nix
./kernel.nix
./immich-proxy.nix
2025-05-19 19:43:57 +10:00
./networking.nix
2026-06-19 08:01:17 +10:00
./nginx.nix
2025-05-19 19:43:57 +10:00
../../users/hana
];
me.environment = "headless";
}