diff options
Diffstat (limited to 'hosts/copenhagen/configuration.nix')
| -rw-r--r-- | hosts/copenhagen/configuration.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hosts/copenhagen/configuration.nix b/hosts/copenhagen/configuration.nix index 4251e69..50eee4d 100644 --- a/hosts/copenhagen/configuration.nix +++ b/hosts/copenhagen/configuration.nix @@ -25,6 +25,13 @@ programs.fuse.userAllowOther = true; + networking = { + hostName = "copenhagen"; + hostId = "a50062ff"; + + useDHCP = true; + }; + time.timeZone = "America/Los_Angeles"; users.users = { @@ -58,6 +65,7 @@ services = { openssh = { enable = true; + ports = [ 42069 ]; settings = { PermitRootLogin = "no"; PasswordAuthentication = false; |