flakes/hosts/fondue/default.nix

26 lines
450 B
Nix
Raw Normal View History

2021-09-20 18:10:28 +07:00
{ config, modules, modulesPath, overlays, pkgs, ... }: {
networking.hostName = "fondue";
system.stateVersion = "21.05";
time.timeZone = "Australia/Melbourne";
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
];
}