diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-28T15·46+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-28T15·46+0200 |
commit | 851d43e7380e84be6fb2f6bc6fae345629d85d70 (patch) | |
tree | 805a298b2d10f7a7463c9295d592e9180f51abd1 | |
parent | eab23ce91281fdcad9d2d27d7722b22e2f6a8f3c (diff) |
refactor(adho/config): Open Chromecast-ports on all machines
-rw-r--r-- | adho-configuration.nix | 3 | ||||
-rw-r--r-- | configuration.nix | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/adho-configuration.nix b/adho-configuration.nix index efc17812fe54..178903511aa7 100644 --- a/adho-configuration.nix +++ b/adho-configuration.nix @@ -98,9 +98,6 @@ "Lorry Gjest" = {}; "Amundsengjest" = {}; }; - - # Open Chromecast-related ports - firewall.allowedTCPPorts = [ 5556 5558 ]; }; hardware.bluetooth.enable = true; diff --git a/configuration.nix b/configuration.nix index 36c7d4a8f363..76466c7e39f5 100644 --- a/configuration.nix +++ b/configuration.nix @@ -30,6 +30,9 @@ "1.0.0.1" ]; + # Open Chromecast-related ports + firewall.allowedTCPPorts = [ 5556 5558 ]; + # Configure emacs: # (actually, that's a lie, this only installs emacs!) services.emacs = { |