2018-11-13 15:44:54 -08:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
2019-04-14 11:38:34 -07:00
|
|
|
|
{ config, pkgs, ... }: {
|
|
|
|
|
imports = [
|
|
|
|
|
./modules/nix-bitcoin.nix
|
2019-04-27 05:19:56 -07:00
|
|
|
|
|
|
|
|
|
# Use hardened kernel profile. See
|
|
|
|
|
# https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/profiles/hardened.nix
|
|
|
|
|
# for the enabled options.
|
|
|
|
|
<nixpkgs/nixos/modules/profiles/hardened.nix>
|
|
|
|
|
|
2018-12-28 05:44:32 -08:00
|
|
|
|
# FIXME: Uncomment next line to import your hardware configuration. If so,
|
|
|
|
|
# add the hardware configuration file to the same directory as this file.
|
2019-01-02 06:56:57 -08:00
|
|
|
|
# This is not needed when deploying to a virtual box.
|
2018-12-10 15:24:47 -08:00
|
|
|
|
#./hardware-configuration.nix
|
2018-12-06 07:59:41 -08:00
|
|
|
|
];
|
2019-04-12 01:47:49 -07:00
|
|
|
|
# FIXME: Enable modules by uncommenting their respective line. Disable
|
|
|
|
|
# modules by commenting out their respective line. Enable this module to
|
|
|
|
|
# use the nix-bitcoin node configuration. Only disable this if you know what
|
|
|
|
|
# you are doing.
|
|
|
|
|
services.nix-bitcoin.enable = true;
|
2019-04-12 02:01:40 -07:00
|
|
|
|
|
|
|
|
|
### CLIGHTNING
|
2019-04-12 01:47:49 -07:00
|
|
|
|
# Enable this module to use clightning, a Lightning Network implementation
|
|
|
|
|
# in C.
|
|
|
|
|
services.clightning.enable = true;
|
2019-04-12 02:01:40 -07:00
|
|
|
|
# Enable this option to listen for incoming lightning connections. By
|
|
|
|
|
# default nix-bitcoin nodes offer outgoing connectivity.
|
|
|
|
|
# services.clightning.autolisten = true;
|
|
|
|
|
|
|
|
|
|
### SPARK WALLET
|
|
|
|
|
# Enable this module to use spark-wallet, a minimalistic wallet GUI for
|
|
|
|
|
# c-lightning, accessible over the web or through mobile and desktop apps.
|
|
|
|
|
# Only enable this if clightning is enabled.
|
|
|
|
|
# services.spark-wallet.enable = true;
|
|
|
|
|
|
|
|
|
|
### ELECTRS
|
|
|
|
|
# Enable this module to use electrs, an efficient re-implementation of
|
2019-05-13 08:13:23 -07:00
|
|
|
|
# Electrum Server in Rust. Only enable this if hardware wallets are
|
2019-05-10 08:37:32 -07:00
|
|
|
|
# disabled.
|
2019-04-12 02:01:40 -07:00
|
|
|
|
# services.electrs.enable = true;
|
|
|
|
|
|
|
|
|
|
### LIQUIDD
|
2019-08-05 08:11:27 -07:00
|
|
|
|
# Enable this module to use Liquid, a sidechain for an inter-exchange
|
2019-04-12 02:01:40 -07:00
|
|
|
|
# settlement network linking together cryptocurrency exchanges and
|
2019-08-05 08:11:27 -07:00
|
|
|
|
# institutions around the world. Liquid is accessed with the elements-cli
|
|
|
|
|
# tool run as user operator.
|
2019-08-06 04:55:19 -07:00
|
|
|
|
# services.liquidd.enable = true;
|
2019-04-12 02:01:40 -07:00
|
|
|
|
|
|
|
|
|
### LIGHTNING CHARGE
|
2019-04-12 01:47:49 -07:00
|
|
|
|
# Enable this module to use lightning-charge, a simple drop-in solution for
|
|
|
|
|
# accepting lightning payments. Only enable this if clightning is enabled.
|
2019-04-12 02:01:40 -07:00
|
|
|
|
# services.lightning-charge.enable = true;
|
|
|
|
|
|
|
|
|
|
### NANOPOS
|
2019-04-12 01:47:49 -07:00
|
|
|
|
# Enable this module to use nanopos, a simple Lightning point-of-sale
|
|
|
|
|
# system, powered by Lightning Charge. Only enable this if clightning and
|
|
|
|
|
# lightning-charge are enabled.
|
2019-04-12 02:01:40 -07:00
|
|
|
|
# services.nanopos.enable = true;
|
|
|
|
|
|
|
|
|
|
### WEBINDEX
|
2019-04-12 01:47:49 -07:00
|
|
|
|
# Enable this module to use the nix-bitcoin-webindex, a simple website
|
|
|
|
|
# displaying your node information and link to nanopos store. Only enable
|
|
|
|
|
# this if clightning, lightning-charge, and nanopos are enabled.
|
2019-04-12 02:01:40 -07:00
|
|
|
|
# services.nix-bitcoin-webindex.enable = true;
|
2019-01-01 11:16:24 -08:00
|
|
|
|
|
2019-04-14 09:55:40 -07:00
|
|
|
|
### RECURRING-DONATIONS
|
2019-04-21 17:38:46 -07:00
|
|
|
|
# Enable this module to send recurring donations. This is EXPERIMENTAL; it's
|
|
|
|
|
# not guaranteed that payments are succeeding or that you will notice payment
|
|
|
|
|
# failure. Only enable this if clightning is enabled.
|
2019-04-14 09:55:40 -07:00
|
|
|
|
# services.recurring-donations.enable = true;
|
|
|
|
|
# Specify the receivers of the donations. By default donations are every
|
2019-04-22 10:39:15 -07:00
|
|
|
|
# Monday at a randomized time. Check `journalctl -eu recurring-donations` or
|
|
|
|
|
# `lightning-cli listpayments` for successful lightning donations.
|
2019-04-14 09:55:40 -07:00
|
|
|
|
# services.recurring-donations.tallycoin = {
|
2019-04-22 10:39:15 -07:00
|
|
|
|
# "<receiver name>" = <amount you wish to donate in sat>"
|
|
|
|
|
# "<additional receiver name>" = <amount you wish to donate in sat>;
|
2019-04-14 09:55:40 -07:00
|
|
|
|
# "djbooth007" = 1000;
|
|
|
|
|
# };
|
|
|
|
|
|
2019-04-29 13:39:25 -07:00
|
|
|
|
### Hardware wallets
|
|
|
|
|
# Enable this module to allow using hardware wallets. See https://github.com/bitcoin-core/HWI
|
2019-05-10 08:37:32 -07:00
|
|
|
|
# for more information. Only enable this if electrs is disabled.
|
2019-04-29 13:39:25 -07:00
|
|
|
|
# Ledger must be initialized through the official ledger live app and the Bitcoin app must
|
|
|
|
|
# be installed and running on the device.
|
|
|
|
|
# services.hardware-wallets.ledger = true;
|
2019-05-13 08:13:23 -07:00
|
|
|
|
# Trezor can be initialized with the trezorctl command in nix-bitcoin. More information in
|
|
|
|
|
# `docs/usage.md`.
|
2019-04-29 13:39:25 -07:00
|
|
|
|
# services.hardware-wallets.trezor = true;
|
|
|
|
|
|
2019-01-01 11:16:24 -08:00
|
|
|
|
# FIXME: Define your hostname.
|
|
|
|
|
networking.hostName = "nix-bitcoin";
|
|
|
|
|
time.timeZone = "UTC";
|
|
|
|
|
|
2018-12-28 05:44:32 -08:00
|
|
|
|
# FIXME: Add your SSH pubkey
|
2019-01-01 11:16:24 -08:00
|
|
|
|
services.openssh.enable = true;
|
2018-12-28 05:44:32 -08:00
|
|
|
|
users.users.root = {
|
|
|
|
|
openssh.authorizedKeys.keys = [ "" ];
|
|
|
|
|
};
|
|
|
|
|
|
2019-01-01 11:16:24 -08:00
|
|
|
|
# FIXME: add packages you need in your system
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
vim
|
|
|
|
|
];
|
|
|
|
|
|
2019-01-15 15:07:32 -08:00
|
|
|
|
# FIXME: Add custom options (like boot options, output of
|
|
|
|
|
# nixos-generate-config, etc.):
|
2018-12-28 05:44:32 -08:00
|
|
|
|
|
2019-04-27 05:19:56 -07:00
|
|
|
|
# If the hardened profile is imported above, we need to explicitly allow
|
|
|
|
|
# user namespaces to enable sanboxed builds and services.
|
|
|
|
|
security.allowUserNamespaces = true;
|
|
|
|
|
|
2019-01-01 11:16:24 -08:00
|
|
|
|
# This value determines the NixOS release with which your system is to be
|
|
|
|
|
# compatible, in order to avoid breaking some software such as database
|
|
|
|
|
# servers. You should change this only after NixOS release notes say you
|
|
|
|
|
# should.
|
|
|
|
|
system.stateVersion = "18.09"; # Did you read the comment?
|
2018-11-13 15:44:54 -08:00
|
|
|
|
}
|