diff options
| author | Preston Pan <ret2pop@gmail.com> | 2025-03-05 04:18:06 -0800 |
|---|---|---|
| committer | Preston Pan <ret2pop@gmail.com> | 2025-03-05 04:18:06 -0800 |
| commit | ba6373ebfbcafc99ce7a4fa100b2a26fc3bc2731 (patch) | |
| tree | 31675c3c370dc77ce1afe93cfa26b72a2ec4f0b9 /nix/modules/bitcoin.nix | |
| parent | 0321f74a87df68584beb3c19a99969f9a794bb85 (diff) | |
add two new blog posts; bitcoin node; haskell devel
Diffstat (limited to 'nix/modules/bitcoin.nix')
| -rw-r--r-- | nix/modules/bitcoin.nix | 7 |
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; + }; +} |
