15 lines
197 B
Nix
15 lines
197 B
Nix
{ ... }:
|
|
{
|
|
boot.loader.grub = {
|
|
enable = true;
|
|
device = "/dev/vda";
|
|
};
|
|
|
|
networking = {
|
|
hostName = "jackett";
|
|
firewall.enable = false;
|
|
};
|
|
|
|
system.stateVersion = "23.05";
|
|
}
|