flakes/hosts/fondue/default.nix
2021-09-20 22:45:51 +07:00

25 lines
450 B
Nix

{ 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
wireguard
./filesystem.nix
./firewall.nix
./kernel.nix
./networking.nix
../../users/rin.nix
];
}