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";