diff options
author | Ben Sima <ben@bsima.me> | 2020-03-28 15:01:01 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-03-28 15:01:01 -0700 |
commit | 5ea2d7974999f11e30156498639b14e0b5bd1532 (patch) | |
tree | 584f9e42685465d8f04cdfb9f414b080fa6ca215 /Com/Simatime/dev/configuration.nix | |
parent | e77e424fdbbc7b541a5542883f3d3559f9535340 (diff) |
Add murmur server
Diffstat (limited to 'Com/Simatime/dev/configuration.nix')
-rw-r--r-- | Com/Simatime/dev/configuration.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Com/Simatime/dev/configuration.nix b/Com/Simatime/dev/configuration.nix index c462535..bb60b59 100644 --- a/Com/Simatime/dev/configuration.nix +++ b/Com/Simatime/dev/configuration.nix @@ -1,6 +1,8 @@ { config, lib, pkgs, ... }: -{ +let + murmurPort = 64738; +in { networking = { hostName = "lithium"; hosts = { @@ -13,6 +15,7 @@ 500 10000 # no idea 8096 # emby 8112 # deluge + murmurPort ]; allowedTCPPortRanges = [ { from = 3000; to = 3100; } # dev stuff @@ -121,6 +124,13 @@ printing.enable = true; + murmur = { + enable = true; + registerName = "simatime"; + password = "simatime"; + port = murmurPort; + }; + xserver = { enable = true; layout = "us"; |