aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 06c4933..a4e4d12 100644
--- a/README.md
+++ b/README.md
@@ -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;