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’).
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
2018-11-20 14:14:40 -08:00
|
|
|
|
let
|
2018-11-20 14:21:45 -08:00
|
|
|
|
# custom package
|
2018-11-20 14:14:40 -08:00
|
|
|
|
nodeinfo = (import pkgs/nodeinfo.nix);
|
|
|
|
|
in {
|
2018-11-19 15:09:57 -08:00
|
|
|
|
disabledModules = [ "services/security/tor.nix" ];
|
|
|
|
|
|
2018-11-13 15:44:54 -08:00
|
|
|
|
imports =
|
2018-11-19 15:09:57 -08:00
|
|
|
|
[
|
2018-11-20 14:21:45 -08:00
|
|
|
|
./modules/nixbitcoin.nix
|
2018-11-13 15:44:54 -08:00
|
|
|
|
];
|
|
|
|
|
|
2018-11-22 10:32:26 -08:00
|
|
|
|
# TODO: does that destroy the channels symlink?
|
|
|
|
|
# turn off binary cache by passing the empty list
|
|
|
|
|
#nix.binaryCaches = [];
|
|
|
|
|
|
2018-11-13 15:44:54 -08:00
|
|
|
|
networking.hostName = "nix-bitcoin"; # Define your hostname.
|
|
|
|
|
time.timeZone = "UTC";
|
|
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
2018-11-22 10:32:26 -08:00
|
|
|
|
vim tmux clightning bitcoin
|
|
|
|
|
nodeinfo
|
2018-11-23 07:49:13 -08:00
|
|
|
|
jq
|
2018-11-13 15:44:54 -08:00
|
|
|
|
];
|
2018-11-20 14:14:40 -08:00
|
|
|
|
nixpkgs.config.packageOverrides = pkgs: {
|
|
|
|
|
inherit nodeinfo;
|
|
|
|
|
};
|
2018-11-13 15:44:54 -08:00
|
|
|
|
|
|
|
|
|
services.openssh.enable = true;
|
|
|
|
|
|
|
|
|
|
# users.users.root = {
|
|
|
|
|
# openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILacgZRwLsiICNHGHY2TG2APeuxFsrw6Cg13ZTMQpNqA nickler@rick" ];
|
|
|
|
|
# };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
|
|
|
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
|
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
|
2018-11-19 15:09:57 -08:00
|
|
|
|
#services.bitcoin.proxy = services.tor.client.socksListenAddress;
|
2018-11-20 14:21:45 -08:00
|
|
|
|
services.nixbitcoin.enable = true;
|
2018-11-19 15:09:57 -08:00
|
|
|
|
|
2018-11-13 15:44:54 -08:00
|
|
|
|
# Configure network proxy if necessary
|
|
|
|
|
# networking.proxy.default = "http://user:password@proxy:port/";
|
|
|
|
|
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
|
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
|
|
|
|
# i18n = {
|
|
|
|
|
# consoleFont = "Lat2-Terminus16";
|
|
|
|
|
# consoleKeyMap = "us";
|
|
|
|
|
# defaultLocale = "en_US.UTF-8";
|
|
|
|
|
# };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
|
# $ nix search wget
|
|
|
|
|
|
|
|
|
|
# Some programs need SUID wrappers, can be configured further or are
|
|
|
|
|
# started in user sessions.
|
|
|
|
|
# programs.mtr.enable = true;
|
|
|
|
|
# programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
|
|
|
|
|
|
|
|
|
|
# List services that you want to enable:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Open ports in the firewall.
|
|
|
|
|
# Or disable the firewall altogether.
|
|
|
|
|
|
|
|
|
|
# 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?
|
|
|
|
|
|
|
|
|
|
}
|