nix-bitcoin/configuration.nix

20 lines
567 B
Nix
Raw Normal View History

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:21:45 -08:00
services.nixbitcoin.enable = true;
2018-12-03 07:31:44 -08:00
# Install and use minimal or all modules
services.nixbitcoin.modules = "all";
2018-12-06 07:59:41 -08:00
networking.hostName = "nix-bitcoin"; # Define your hostname.
imports = [
./configuration-nix-bitcoin.nix
#./hardware-configuration.nix
2018-12-06 07:59:41 -08:00
];
# Add custom options options (like boot options) here:
2018-11-13 15:44:54 -08:00
}