nix-infra/hosts/nitter/configuration.nix

16 lines
227 B
Nix
Raw Normal View History

2024-11-20 05:46:39 +01:00
{ config, pkgs, ... }:
{
boot.loader.grub = {
enable = true;
version = 2;
device = "/dev/vda";
};
networking = {
hostName = "nitter";
firewall.enable = false;
};
system.stateVersion = "23.05";
}