self-hosting/hardware/hcloud.nix

13 lines
312 B
Nix
Raw Normal View History

2021-07-15 17:09:32 +02:00
{ modulesPath, config, pkgs, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub.device = "/dev/sda";
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
2021-07-17 00:24:30 +02:00
time.timeZone = "Europe/Amsterdam";
2021-07-15 17:09:32 +02:00
boot.cleanTmpDir = true;
networking.firewall.allowPing = true;
}