diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,13 +26,13 @@ The basic `configuration.nix` file in the current snapshots looks just like this { config, pkgs, ... }: { - imports = [ # Include the results of the hardware scan. + imports = [ ./hardware-configuration.nix ]; boot.loader.grub.enable = true; boot.loader.grub.version = 2; - boot.loader.grub.device = "/dev/vda"; # or "nodev" for efi only + boot.loader.grub.device = "/dev/vda"; networking.useDHCP = false; networking.interfaces.ens3.useDHCP = true; |