nix-config/hosts/virtualbox/default.nix

10 lines
147 B
Nix

{ config, pkgs, ... }:
{
imports = [ ./hardware-configuration.nix ];
boot.loader.grub = {
enable = true;
device = "/dev/sda";
};
}