nix-infra/hosts/nitter/configuration.nix
2023-07-10 15:30:51 +02:00

16 lines
227 B
Nix

{ config, pkgs, ... }:
{
boot.loader.grub = {
enable = true;
version = 2;
device = "/dev/vda";
};
networking = {
hostName = "nitter";
firewall.enable = false;
};
system.stateVersion = "23.05";
}