installation: Remove FIXME from comments
Otherwise grepping for FIXME shows this, even though it’s not what you expect.
This commit is contained in:
parent
2d74dac8c0
commit
15075a818d
|
@ -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:
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue