diff options
author | EuAndreh <eu@euandre.org> | 2020-08-10 17:45:07 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-08-10 17:45:07 -0300 |
commit | 4859b1db85034673e1751283d0eeeb01e8197ed9 (patch) | |
tree | 5d7eb660b2486612bc06599f605d51f66143480d /README.md | |
parent | Update Terraform infrastructure (diff) | |
download | toph-4859b1db85034673e1751283d0eeeb01e8197ed9.tar.gz toph-4859b1db85034673e1751283d0eeeb01e8197ed9.tar.xz |
README.md: Remove comments from sample nix configuration
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; |