16 lines
227 B
Nix
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";
|
||
|
}
|