all repos — nixfiles @ 2460a54df4acd9860635a4e1cf5427187a670616

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
{ 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
    mongodb
    franz
    pkgsUnstable.scudcloud
  ];

  networking.domain = "satoshipay.io";
}