summaryrefslogtreecommitdiff
path: root/nix/modules/bitcoin.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/modules/bitcoin.nix')
-rw-r--r--nix/modules/bitcoin.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/nix/modules/bitcoin.nix b/nix/modules/bitcoin.nix
new file mode 100644
index 0000000..bd014bb
--- /dev/null
+++ b/nix/modules/bitcoin.nix
@@ -0,0 +1,7 @@
+{ config, lib, ... }:
+{
+ services.bitcoind."${config.monorepo.vars.userName}" = {
+ enable = lib.mkDefault config.monorepo.profiles.workstation.enable;
+ prune = 10000;
+ };
+}