From 15075a818db5dedbbf56e7b0b017c5fa953e4cad Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Tue, 30 Mar 2021 23:49:08 +0200 Subject: [PATCH] installation: Remove FIXME from comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise grepping for FIXME shows this, even though it’s not what you expect. --- README.md | 4 ++-- machines/installation/configuration.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fd1baba..64405c8 100644 --- a/README.md +++ b/README.md @@ -82,8 +82,8 @@ this machine): nixos-generate-config --root /mnt/ -Modify the hardware configuration as needed. Fill in the `FIXME` fields of -`machines/installation/configuration.nix` and copy it to +Modify the hardware configuration as needed. Fill in the fields that have +comments in `machines/installation/configuration.nix` and copy it to `/mnt/etc/nixos/configuration.nix`. Install NixOS: diff --git a/machines/installation/configuration.nix b/machines/installation/configuration.nix index 50b7ac2..d546733 100644 --- a/machines/installation/configuration.nix +++ b/machines/installation/configuration.nix @@ -6,7 +6,7 @@ ]; networking.useDHCP = false; - # FIXME: replace with actual network interface + # replace with actual network interface networking.interfaces.eno1.useDHCP = true; environment.systemPackages = with pkgs; [ @@ -16,7 +16,7 @@ services.openssh.enable = true; users.users.root.openssh.authorizedKeys.keys = [ - # FIXME: add ssh keys required for initial deployment with krops + # add ssh keys required for initial deployment with krops ]; console.keyMap = "de";