2024-03-13 16:00:37 +11:00
|
|
|
{ config, inputs, modules, modulesPath, overlays, pkgs, ... }: {
|
|
|
|
|
networking.hostName = "dandelion";
|
|
|
|
|
system.stateVersion = "23.11";
|
|
|
|
|
time.timeZone = "Australia/Melbourne";
|
|
|
|
|
|
|
|
|
|
imports = with modules.system; [
|
|
|
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
|
|
|
inputs.home-manager-stable.nixosModule
|
|
|
|
|
|
|
|
|
|
base
|
|
|
|
|
home-manager
|
|
|
|
|
input
|
|
|
|
|
nix-stable
|
|
|
|
|
security
|
|
|
|
|
#wireguard
|
|
|
|
|
|
2024-07-24 13:23:12 +10:00
|
|
|
modules.services.nginx
|
2024-07-07 12:38:23 +10:00
|
|
|
modules.services.postgres
|
|
|
|
|
|
2024-03-13 16:00:37 +11:00
|
|
|
./filesystem.nix
|
|
|
|
|
./kernel.nix
|
|
|
|
|
./networking.nix
|
|
|
|
|
./packages.nix
|
|
|
|
|
|
|
|
|
|
../../users/hana
|
|
|
|
|
];
|
|
|
|
|
}
|