all repos — nixfiles @ 140c75b83a3074c69c562fd0d788a00cad25b8e3

System and user configuration, managed by nix and home-manager

modules/satoshipay.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ config, pkgs, lib, ... }:

let
  pkgsUnstable = import <nixos-unstable> {};
  # pkgsUnstable = pkgs;
in
{ virtualisation = {
    docker = {
      enable = true;
      enableOnBoot = false;
      liveRestore = false;
    };
  };

  nixpkgs.config.allowUnfree = true;

  environment.systemPackages = with pkgs; [
    google-chrome
    docker_compose
    electrum
    robomongo
    pkgsUnstable.slack
  ];

  services.mongodb = {
    enable = true;
  };
  systemd.services.mongodb.wantedBy = lib.mkForce  [];
  services.redis = {
    enable = true;
  };
  systemd.services.redis.wantedBy = lib.mkForce [];

  services.printing.drivers = with pkgs; [
    cups-toshiba-estudio
  ];

  networking.domain = "satoshipay.io";

  networking.extraHosts = ''
    127.0.0.1 blogger.local wallet.satoshipay.local api.satoshipay.local ws.satoshipay.local
  '';
}