diff options
author | Ben Sima <ben@bsima.me> | 2019-01-30 17:20:43 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-01-30 17:20:43 -0800 |
commit | 67ddf074edec7631067c5f634c3e56e0848cd11f (patch) | |
tree | c1d309daade3b6bbc507b845dd1c4c23b1ccdfca /configuration.nix | |
parent | 6750622c47a90060159544c8c928ef3440a43ec9 (diff) |
Build production machine locally
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix new file mode 100644 index 0000000..389f44f --- /dev/null +++ b/configuration.nix @@ -0,0 +1,38 @@ +{ ... }: + +{ + nixpkgs.config.packageOverrides = pkgs: { + ibb = import ./ibb/default.nix {}; + }; + services = { + + ibb.enable = true; + + nginx = { + enable = true; + recommendedGzipSettings = true; + recommendedOptimisation = true; + recommendedProxySettings = true; + recommendedTlsSettings = true; + virtualHosts = { + "ibb.simatime.com" = { + forceSSL = true; + enableACME = true; + locations = { + "/" = { + proxyPass = "http://localhost:3000"; + }; + }; + }; + }; + }; + }; + + boot.cleanTmpDir = true; + networking.hostName = "simatime"; + networking.firewall.allowPing = true; + services.openssh.enable = true; + users.users.root.openssh.authorizedKeys.keys = [ + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCiNB0iF9ClawNEizBtdYucqp1tAXXRbqvlPS6PFRrtiwSl+SJD29BCLgA5rLxcmFhBHZ/iId/En7GPFEzI/gMu071J7pUI4OcW0UVZju3GNc6ZEz/a6AD2u79JiXEDHfPEdmMqAe36kkaK0KJWSQP3xsFRwJ+8F8HHbSwoCLL+GJhBgAWHQLGfKesNrDacNljNDU3CgkEnDmu8QKuSzH2k1vrr69q2u2iMSAdiStDBAWEjN5nCVrm2XB2vmFLMtXpX2n8JI+znOGzRRDc8dNXejQeDMZGyV6jfVidEIX7vdgSydGjTRKcCLVAsKY3z0gYBZ8u8EUNujgcFBnnAvytj ben@neb" + ]; +} |