Skip to content

Instantly share code, notes, and snippets.

@projectoperations
Forked from nycksw/contabo.nix
Created November 18, 2025 06:42
Show Gist options
  • Select an option

  • Save projectoperations/7589ac6b9d95edce908a911d87cc011f to your computer and use it in GitHub Desktop.

Select an option

Save projectoperations/7589ac6b9d95edce908a911d87cc011f to your computer and use it in GitHub Desktop.
contabo.nix
# contabo.nix: Parameters needed for Contabo's VPS environment.
{ config, pkgs, ... }:
{
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.forceInstall = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment