2022-10-22 17:18:03 +03:00
{ config , lib , pkgs , utils , . . . }:
with lib ;
let
cfg = config . services . ipfs ;
ipfsFlags = utils . escapeSystemdExecArgs (
optional cfg . autoMount " - - m o u n t " ++
optional cfg . enableGC " - - e n a b l e - g c " ++
optional ( cfg . serviceFdlimit != null ) " - - m a n a g e - f d l i m i t = f a l s e " ++
optional ( cfg . defaultMode == " o f f l i n e " ) " - - o f f l i n e " ++
optional ( cfg . defaultMode == " n o r o u t i n g " ) " - - r o u t i n g = n o n e " ++
cfg . extraFlags
) ;
profile =
if cfg . localDiscovery
then " l o c a l - d i s c o v e r y "
else " s e r v e r " ;
splitMulitaddr = addrRaw : lib . tail ( lib . splitString " / " addrRaw ) ;
multiaddrToListenStream = addrRaw :
let
addr = splitMulitaddr addrRaw ;
s = builtins . elemAt addr ;
in
if s 0 == " i p 4 " && s 2 == " t c p "
then " ${ s 1 } : ${ s 3 } "
else if s 0 == " i p 6 " && s 2 == " t c p "
then " [ ${ s 1 } ] : ${ s 3 } "
else if s 0 == " u n i x "
then " / ${ lib . concatStringsSep " / " ( lib . tail addr ) } "
else null ; # not valid for listen stream, skip
multiaddrToListenDatagram = addrRaw :
let
addr = splitMulitaddr addrRaw ;
s = builtins . elemAt addr ;
in
if s 0 == " i p 4 " && s 2 == " u d p "
then " ${ s 1 } : ${ s 3 } "
else if s 0 == " i p 6 " && s 2 == " u d p "
then " [ ${ s 1 } ] : ${ s 3 } "
else null ; # not valid for listen datagram, skip
in
{
disabledModules = [
2022-12-17 20:42:14 +02:00
" s e r v i c e s / n e t w o r k - f i l e s y s t e m s / k u b o . n i x "
2022-10-22 17:18:03 +03:00
] ;
###### interface
options = {
services . ipfs = {
enable = mkEnableOption ( lib . mdDoc " I n t e r p l a n e t a r y F i l e S y s t e m ( W A R N I N G : m a y c a u s e s e v e r e n e t w o r k d e g r e d a t i o n ) " ) ;
package = mkOption {
type = types . package ;
default = pkgs . ipfs ;
defaultText = literalExpression " p k g s . i p f s " ;
description = lib . mdDoc " W h i c h I P F S p a c k a g e t o u s e . " ;
} ;
user = mkOption {
type = types . str ;
default = " i p f s " ;
description = lib . mdDoc " U s e r u n d e r w h i c h t h e I P F S d a e m o n r u n s " ;
} ;
group = mkOption {
type = types . str ;
default = " i p f s " ;
description = lib . mdDoc " G r o u p u n d e r w h i c h t h e I P F S d a e m o n r u n s " ;
} ;
dataDir = mkOption {
type = types . str ;
default =
if versionAtLeast config . system . stateVersion " 1 7 . 0 9 "
then " / v a r / l i b / i p f s "
else " / v a r / l i b / i p f s / . i p f s " ;
defaultText = literalExpression ''
if versionAtLeast config . system . stateVersion " 1 7 . 0 9 "
then " / v a r / l i b / i p f s "
else " / v a r / l i b / i p f s / . i p f s "
'' ;
description = lib . mdDoc " T h e d a t a d i r f o r I P F S " ;
} ;
defaultMode = mkOption {
type = types . enum [ " o n l i n e " " o f f l i n e " " n o r o u t i n g " ] ;
default = " o n l i n e " ;
description = lib . mdDoc " s y s t e m d s e r v i c e t h a t i s e n a b l e d b y d e f a u l t " ;
} ;
autoMount = mkOption {
type = types . bool ;
default = false ;
description = lib . mdDoc " W h e t h e r I P F S s h o u l d t r y t o m o u n t / i p f s a n d / i p n s a t s t a r t u p . " ;
} ;
autoMigrate = mkOption {
type = types . bool ;
default = true ;
description = lib . mdDoc " W h e t h e r I P F S s h o u l d t r y t o r u n t h e f s - r e p o - m i g r a t i o n a t s t a r t u p . " ;
} ;
ipfsMountDir = mkOption {
type = types . str ;
default = " / i p f s " ;
description = lib . mdDoc " W h e r e t o m o u n t t h e I P F S n a m e s p a c e t o " ;
} ;
ipnsMountDir = mkOption {
type = types . str ;
default = " / i p n s " ;
description = lib . mdDoc " W h e r e t o m o u n t t h e I P N S n a m e s p a c e t o " ;
} ;
gatewayAddress = mkOption {
type = types . str ;
default = " / i p 4 / 1 2 7 . 0 . 0 . 1 / t c p / 8 0 8 0 " ;
description = lib . mdDoc " W h e r e t h e I P F S G a t e w a y c a n b e r e a c h e d " ;
} ;
apiAddress = mkOption {
type = types . str ;
default = " / i p 4 / 1 2 7 . 0 . 0 . 1 / t c p / 5 0 0 1 " ;
description = lib . mdDoc " W h e r e I P F S e x p o s e s i t s A P I t o " ;
} ;
swarmAddress = mkOption {
type = types . listOf types . str ;
default = [
" / i p 4 / 0 . 0 . 0 . 0 / t c p / 4 0 0 1 "
" / i p 6 / : : / t c p / 4 0 0 1 "
" / i p 4 / 0 . 0 . 0 . 0 / u d p / 4 0 0 1 / q u i c "
" / i p 6 / : : / u d p / 4 0 0 1 / q u i c "
] ;
description = lib . mdDoc " W h e r e I P F S l i s t e n s f o r i n c o m i n g p 2 p c o n n e c t i o n s " ;
} ;
enableGC = mkOption {
type = types . bool ;
default = false ;
description = lib . mdDoc " W h e t h e r t o e n a b l e a u t o m a t i c g a r b a g e c o l l e c t i o n " ;
} ;
emptyRepo = mkOption {
type = types . bool ;
default = false ;
description = lib . mdDoc " I f s e t t o t r u e , t h e r e p o w o n ' t b e i n i t i a l i z e d w i t h h e l p f i l e s " ;
} ;
extraConfig = mkOption {
2023-10-27 20:21:01 +03:00
type = types . attrsOf types . anything ;
2022-10-22 17:18:03 +03:00
description = lib . mdDoc ''
Attrset of daemon configuration to set using { command } ` ipfs config ` , every time the daemon starts .
These are applied last , so may override configuration set by other options in this module .
Keep in mind that this configuration is stateful ; i . e . , unsetting anything in here does not reset the value to the default !
'' ;
default = { } ;
example = {
Datastore . StorageMax = " 1 0 0 G B " ;
Discovery . MDNS . Enabled = false ;
Bootstrap = [
" / i p 4 / 1 2 8 . 1 9 9 . 2 1 9 . 1 1 1 / t c p / 4 0 0 1 / i p f s / Q m S o L S a f T M B s P K a d T E g a X c t D Q V c q N 8 8 C N L H X M k T N w M K P n u "
" / i p 4 / 1 6 2 . 2 4 3 . 2 4 8 . 2 1 3 / t c p / 4 0 0 1 / i p f s / Q m S o L u e R 4 x B e U b Y 9 W Z 9 x G U U x u n b K W c r N F T D A a d Q J m o c n W m "
] ;
Swarm . AddrFilters = null ;
} ;
} ;
extraFlags = mkOption {
type = types . listOf types . str ;
description = lib . mdDoc " E x t r a f l a g s p a s s e d t o t h e I P F S d a e m o n " ;
default = [ ] ;
} ;
localDiscovery = mkOption {
type = types . bool ;
description = lib . mdDoc '' W h e t h e r t o e n a b l e l o c a l d i s c o v e r y f o r t h e I P F S d a e m o n .
This will allow IPFS to scan ports on your local network . Some hosting services will ban you if you do this .
'' ;
default = false ;
} ;
serviceFdlimit = mkOption {
type = types . nullOr types . int ;
default = null ;
description = lib . mdDoc " T h e f d l i m i t f o r t h e I P F S s y s t e m d u n i t o r ` n u l l ` t o h a v e t h e d a e m o n a t t e m p t t o m a n a g e i t " ;
example = 64 * 1024 ;
} ;
startWhenNeeded = mkOption {
type = types . bool ;
default = false ;
description = lib . mdDoc " W h e t h e r t o u s e s o c k e t a c t i v a t i o n t o s t a r t I P F S w h e n n e e d e d . " ;
} ;
} ;
} ;
###### implementation
config = mkIf cfg . enable {
environment . systemPackages = [ cfg . package ] ;
environment . variables . IPFS_PATH = cfg . dataDir ;
# https://github.com/lucas-clemente/quic-go/wiki/UDP-Receive-Buffer-Size
boot . kernel . sysctl . " n e t . c o r e . r m e m _ m a x " = mkDefault 2500000 ;
programs . fuse = mkIf cfg . autoMount {
userAllowOther = true ;
} ;
users . users = mkIf ( cfg . user == " i p f s " ) {
ipfs = {
group = cfg . group ;
home = cfg . dataDir ;
createHome = false ;
uid = config . ids . uids . ipfs ;
description = " I P F S d a e m o n u s e r " ;
packages = [
pkgs . ipfs-migrator
] ;
} ;
} ;
users . groups = mkIf ( cfg . group == " i p f s " ) {
ipfs . gid = config . ids . gids . ipfs ;
} ;
systemd . tmpfiles . rules = [
" d ' ${ cfg . dataDir } ' - ${ cfg . user } ${ cfg . group } - - "
] ++ optionals cfg . autoMount [
" d ' ${ cfg . ipfsMountDir } ' - ${ cfg . user } ${ cfg . group } - - "
" d ' ${ cfg . ipnsMountDir } ' - ${ cfg . user } ${ cfg . group } - - "
] ;
# The hardened systemd unit breaks the fuse-mount function according to documentation in the unit file itself
systemd . packages = if cfg . autoMount
then [ cfg . package . systemd_unit ]
else [ cfg . package . systemd_unit_hardened ] ;
systemd . services . ipfs = {
path = [ " / r u n / w r a p p e r s " cfg . package ] ;
environment . IPFS_PATH = cfg . dataDir ;
preStart = ''
if [ [ ! - f " $ I P F S _ P A T H / c o n f i g " ] ] ; then
ipfs init $ { optionalString cfg . emptyRepo " - e " } - - profile = $ { profile }
else
# After an unclean shutdown this file may exist which will cause the config command to attempt to talk to the daemon. This will hang forever if systemd is holding our sockets open.
rm - vf " $ I P F S _ P A T H / a p i "
'' + o p t i o n a l S t r i n g c f g . a u t o M i g r a t e ''
$ { pkgs . ipfs-migrator } /bin/fs-repo-migrations - to ' $ { cfg . package . repoVersion } ' - y
'' + ''
[ [ ! - e " $ I P F S _ P A T H / p r o f i l e - n i x o s " || $ ( cat " $ I P F S _ P A T H / p r o f i l e - n i x o s " ) != " ${ profile } " ] ] && \
ipfs - - offline config profile apply $ { profile } > /dev/null
fi
echo $ { profile } > " $ I P F S _ P A T H / p r o f i l e - n i x o s "
'' + ''
cat " $ I P F S _ P A T H / c o n f i g " \
| $ { pkgs . jq } /bin/jq ' . * $ extraConfig' - - argjson extraConfig $ {
escapeShellArg ( builtins . toJSON (
recursiveUpdate
{
Addresses . API = cfg . apiAddress ;
Addresses . Gateway = cfg . gatewayAddress ;
Addresses . Swarm = cfg . swarmAddress ;
Mounts = optionalAttrs cfg . autoMount {
FuseAllowOther = true ;
IPFS = cfg . ipfsMountDir ;
IPNS = cfg . ipnsMountDir ;
} ;
}
cfg . extraConfig
) )
} \
2024-06-05 20:55:47 +03:00
| install - m 0600 /dev/stdin " $ I P F S _ P A T H / . c o n f i g . n e w "
2022-10-22 17:18:03 +03:00
mv " $ I P F S _ P A T H / . c o n f i g . n e w " " $ I P F S _ P A T H / c o n f i g "
'' ;
serviceConfig = {
ExecStart = [ " " " ${ cfg . package } / b i n / i p f s d a e m o n ${ ipfsFlags } " ] ;
User = cfg . user ;
Group = cfg . group ;
StateDirectory = " " ;
ReadWritePaths = optionals ( ! cfg . autoMount ) [ " " cfg . dataDir ] ;
} // optionalAttrs ( cfg . serviceFdlimit != null ) { LimitNOFILE = cfg . serviceFdlimit ; } ;
} // optionalAttrs ( ! cfg . startWhenNeeded ) {
wantedBy = [ " d e f a u l t . t a r g e t " ] ;
} ;
systemd . sockets . ipfs-gateway = {
wantedBy = [ " s o c k e t s . t a r g e t " ] ;
socketConfig = {
ListenStream =
let
fromCfg = multiaddrToListenStream cfg . gatewayAddress ;
in
[ " " ] ++ lib . optional ( fromCfg != null ) fromCfg ;
ListenDatagram =
let
fromCfg = multiaddrToListenDatagram cfg . gatewayAddress ;
in
[ " " ] ++ lib . optional ( fromCfg != null ) fromCfg ;
} ;
} ;
systemd . sockets . ipfs-api = {
wantedBy = [ " s o c k e t s . t a r g e t " ] ;
# We also include "%t/ipfs.sock" because there is no way to put the "%t"
# in the multiaddr.
socketConfig . ListenStream =
let
fromCfg = multiaddrToListenStream cfg . apiAddress ;
in
[ " " " % t / i p f s . s o c k " ] ++ lib . optional ( fromCfg != null ) fromCfg ;
} ;
} ;
}