flakes/hosts/fondue/default.nix

29 lines
563 B
Nix

{ config, modules, modulesPath, overlays, pkgs, ... }: {
networking.hostName = "fondue";
system.stateVersion = "21.05";
time.timeZone = "Australia/Melbourne";
age.secrets = {
passwd.file = ../../secrets/passwd.age;
wg_fondue.file = ../../secrets/wg_fondue.age;
};
imports = with modules.system; [
(modulesPath + "/profiles/qemu-guest.nix")
base
input
kernel
nix
packages
security
snapper
wireguard
./filesystem.nix
./firewall.nix
./kernel.nix
./networking.nix
../../users/rin
];
}