nix-bitcoin/configuration.nix

29 lines
837 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-28 05:44:32 -08:00
# FIXME: Define your hostname.
networking.hostName = "nix-bitcoin";
2018-12-06 07:59:41 -08:00
imports = [
2018-12-28 05:44:32 -08:00
./configuration-nixbitcoin.nix
# FIXME: Uncomment next line to import your hardware configuration. If so,
# add the hardware configuration file to the same directory as this file.
#./hardware-configuration.nix
2018-12-06 07:59:41 -08:00
];
2018-12-28 05:44:32 -08:00
# FIXME: Add your SSH pubkey
users.users.root = {
openssh.authorizedKeys.keys = [ "" ];
};
# FIXME: Add custom options options (like boot options):
2018-11-13 15:44:54 -08:00
}