diff options
author | Preston Pan <ret2pop@gmail.com> | 2025-02-03 15:35:10 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2025-02-03 15:35:10 -0800 |
commit | 8e5d3a8fcd6893bcd4903cc9b7bfe96f6486d7c6 (patch) | |
tree | 6881c472ddbabd6f3788066485f78fe5ddae0b4d /nix/modules/configuration.nix | |
parent | d6efefc1d9e6b9fd515c5cb5f2a077e05caeaab7 (diff) |
Add spontaneity system; add port to firewall
Diffstat (limited to 'nix/modules/configuration.nix')
-rw-r--r-- | nix/modules/configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/modules/configuration.nix b/nix/modules/configuration.nix index 3c12962..97b8764 100644 --- a/nix/modules/configuration.nix +++ b/nix/modules/configuration.nix @@ -181,7 +181,7 @@ # wifi.macAddress = ""; }; firewall = { - allowedTCPPorts = [ 11434 ]; + allowedTCPPorts = [ 22 11434 ]; allowedUDPPorts = [ ]; }; }; @@ -292,7 +292,7 @@ users.users = { root.openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINSshvS1N/42pH9Unp3Zj4gjqs9BXoin99oaFWYHXZDJ preston@preston-arch" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICts6+MQiMwpA+DfFQxjIN214Jn0pCw/2BDvOzPhR/H2 preston@continuity-dell" ]; git = { |