Skip to content

Commit

Permalink
Fixes #556
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed Dec 6, 2016
1 parent 5a9adc8 commit 5e5db68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nix/hetzner.nix
Expand Up @@ -72,7 +72,7 @@ with lib;
config = mkIf (config.deployment.targetEnv == "hetzner") {
nixpkgs.system = mkOverride 900 "x86_64-linux";
boot.loader.grub.version = 2;
boot.loader.grub.timeout = 1;
boot.loader.timeout = 1;
services.openssh.enable = true;

# Blacklist nvidiafb by default as it causes issues with some GPUs.
Expand Down
2 changes: 1 addition & 1 deletion nix/libvirtd-image.nix
Expand Up @@ -8,7 +8,7 @@ let

boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.timeout = 0;
boot.loader.timeout = 0;

services.openssh.enable = true;
services.openssh.startWhenNeeded = false;
Expand Down
2 changes: 1 addition & 1 deletion nix/libvirtd.nix
Expand Up @@ -119,7 +119,7 @@ in

boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.timeout = 0;
boot.loader.timeout = 0;

services.openssh.enable = true;
services.openssh.startWhenNeeded = false;
Expand Down

0 comments on commit 5e5db68

Please sign in to comment.