mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
added bitcoin overlay
This commit is contained in:
parent
426e056b1e
commit
d9de82c5c5
1 changed files with 14 additions and 14 deletions
|
|
@ -12,20 +12,20 @@ let
|
||||||
in
|
in
|
||||||
{ options.modules.system.bitcoin = { enable = mkEnableOption "system.bitcoin"; };
|
{ options.modules.system.bitcoin = { enable = mkEnableOption "system.bitcoin"; };
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
#nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
# (final: prev: {
|
(final: prev: {
|
||||||
# bitcoind = prev.bitcoind.overrideAttrs (old: {
|
bitcoind = prev.bitcoind.overrideAttrs (old: {
|
||||||
# src = fetchTarball {
|
src = fetchTarball {
|
||||||
# url = ''
|
url = ''
|
||||||
# https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}-x86_64-linux-gnu.tar.gz
|
https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}-x86_64-linux-gnu.tar.gz
|
||||||
# '';
|
'';
|
||||||
# sha256 = ''
|
sha256 = ''
|
||||||
# sha256-05i4zrdwr2rnbimf4fmklbm1mrvxg1bnv3yrrx44cp66ba0nd3jg
|
sha256-05i4zrdwr2rnbimf4fmklbm1mrvxg1bnv3yrrx44cp66ba0nd3jg
|
||||||
# '';
|
'';
|
||||||
# };
|
};
|
||||||
# });
|
});
|
||||||
# })
|
})
|
||||||
#];
|
];
|
||||||
|
|
||||||
users = {
|
users = {
|
||||||
users = {
|
users = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue