installation: Remove FIXME from comments

Otherwise grepping for FIXME shows this, even though it’s not what you
expect.
pull/52/head
Simon Bruder 2021-03-30 23:49:08 +02:00
parent 2d74dac8c0
commit 15075a818d
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 4 additions and 4 deletions

View File

@ -82,8 +82,8 @@ this machine):
nixos-generate-config --root /mnt/ nixos-generate-config --root /mnt/
Modify the hardware configuration as needed. Fill in the `FIXME` fields of Modify the hardware configuration as needed. Fill in the fields that have
`machines/installation/configuration.nix` and copy it to comments in `machines/installation/configuration.nix` and copy it to
`/mnt/etc/nixos/configuration.nix`. `/mnt/etc/nixos/configuration.nix`.
Install NixOS: Install NixOS:

View File

@ -6,7 +6,7 @@
]; ];
networking.useDHCP = false; networking.useDHCP = false;
# FIXME: replace with actual network interface # replace with actual network interface
networking.interfaces.eno1.useDHCP = true; networking.interfaces.eno1.useDHCP = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@ -16,7 +16,7 @@
services.openssh.enable = true; services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keys = [ 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"; console.keyMap = "de";