summary refs log tree commit diff stats
path: root/modules/satoshipay.nix
blob: 91aa89fe79fa19fe40a5c0fd9df9790291f2cd93 (plain)
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
{ config, pkgs, ... }:

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

  nixpkgs.config.allowUnfree = true;

  environment.systemPackages = with pkgs; [
    google-chrome
    docker_compose
    mongodb
    franz
    pkgsUnstable.scudcloud
  ];

  networking.domain = "satoshipay.io";
}