+welcomeText
This commit is contained in:
parent
f48f2d3910
commit
f31a6b776a
13
flake.nix
13
flake.nix
@ -33,6 +33,19 @@
|
|||||||
description = ''
|
description = ''
|
||||||
NIXOS Vserver - basic vserver with traefik and podman to be run on a vps.
|
NIXOS Vserver - basic vserver with traefik and podman to be run on a vps.
|
||||||
'';
|
'';
|
||||||
|
welcomeText = ''
|
||||||
|
## Next steps
|
||||||
|
1. Move hosts/__HOSTNAME__ to hosts/your-hostname with
|
||||||
|
|
||||||
|
`mv hosts/__HOSTNAME__ hosts/your-hostname`
|
||||||
|
2. Edit configuration.nix
|
||||||
|
|
||||||
|
`networking.hostName = "__HOSTNAME__"; # CHANGE ME.`
|
||||||
|
|
||||||
|
`networking.hostId = ""; # CHANGE ME`
|
||||||
|
|
||||||
|
You can change a hostId with `openssl rand -hex 4`
|
||||||
|
'';
|
||||||
path = ./nixos/vps;
|
path = ./nixos/vps;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
efiInstallAsRemovable = true;
|
efiInstallAsRemovable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = "new-vps"; # CHANGE ME.
|
networking.hostName = "__HOSTNAME__"; # CHANGE ME.
|
||||||
networking.hostId = ""; # CHANGE ME
|
networking.hostId = ""; # CHANGE ME
|
||||||
# Pick only one of the below networking options.
|
# Pick only one of the below networking options.
|
||||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
Loading…
x
Reference in New Issue
Block a user