aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-08-10 17:45:07 -0300
committerEuAndreh <eu@euandre.org>2020-08-10 17:45:07 -0300
commit4859b1db85034673e1751283d0eeeb01e8197ed9 (patch)
tree5d7eb660b2486612bc06599f605d51f66143480d /README.md
parentUpdate Terraform infrastructure (diff)
downloadtoph-4859b1db85034673e1751283d0eeeb01e8197ed9.tar.gz
toph-4859b1db85034673e1751283d0eeeb01e8197ed9.tar.xz
README.md: Remove comments from sample nix configuration
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;