2021-09-20 18:10:28 +07:00
|
|
|
{ config, modules, modulesPath, overlays, pkgs, ... }: {
|
|
|
|
|
networking.hostName = "fondue";
|
|
|
|
|
system.stateVersion = "21.05";
|
|
|
|
|
time.timeZone = "Australia/Melbourne";
|
|
|
|
|
|
2021-09-20 14:57:05 +00:00
|
|
|
age.secrets = {
|
|
|
|
|
passwd.file = ../../secrets/passwd.age;
|
|
|
|
|
wg_fondue.file = ../../secrets/wg_fondue.age;
|
|
|
|
|
};
|
2021-09-20 18:10:28 +07:00
|
|
|
imports = with modules.system; [
|
|
|
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
|
|
|
base
|
|
|
|
|
input
|
|
|
|
|
kernel
|
|
|
|
|
nix
|
|
|
|
|
packages
|
|
|
|
|
security
|
|
|
|
|
snapper
|
2021-09-20 14:45:07 +00:00
|
|
|
wireguard
|
2021-09-20 18:10:28 +07:00
|
|
|
|
|
|
|
|
./filesystem.nix
|
2021-09-20 13:42:43 +00:00
|
|
|
./firewall.nix
|
2021-09-20 18:10:28 +07:00
|
|
|
./kernel.nix
|
|
|
|
|
./networking.nix
|
|
|
|
|
|
|
|
|
|
../../users/rin.nix
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|