2018-11-13 23:44:54 +00: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-12-10 23:24:47 +00:00
|
|
|
|
{
|
|
|
|
|
|
2018-11-20 22:21:45 +00:00
|
|
|
|
services.nixbitcoin.enable = true;
|
2018-12-03 15:31:44 +00:00
|
|
|
|
# Install and use minimal or all modules
|
|
|
|
|
services.nixbitcoin.modules = "all";
|
2018-11-19 23:09:57 +00:00
|
|
|
|
|
2018-12-28 13:44:32 +00:00
|
|
|
|
# FIXME: Define your hostname.
|
|
|
|
|
networking.hostName = "nix-bitcoin";
|
2018-12-06 15:59:41 +00:00
|
|
|
|
|
2018-12-10 23:24:47 +00:00
|
|
|
|
imports = [
|
2018-12-28 13:44:32 +00: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.
|
2018-12-10 23:24:47 +00:00
|
|
|
|
#./hardware-configuration.nix
|
2018-12-06 15:59:41 +00:00
|
|
|
|
];
|
2018-12-28 13:44:32 +00:00
|
|
|
|
# FIXME: Add your SSH pubkey
|
|
|
|
|
users.users.root = {
|
|
|
|
|
openssh.authorizedKeys.keys = [ "" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# FIXME: Add custom options options (like boot options):
|
|
|
|
|
|
2018-11-13 23:44:54 +00:00
|
|
|
|
}
|