diff options
author | EuAndreh <eu@euandre.org> | 2018-11-19 22:22:26 -0200 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-11-19 22:22:26 -0200 |
commit | 9060515734e2963e7c7890e6d41e90909778b7a6 (patch) | |
tree | d1cfe63948a061e65cab81fb56fe2638dd6aafcc /nixos/configuration.nix | |
parent | Disable spell-checking in Emacs by default. (diff) | |
download | dotfiles-9060515734e2963e7c7890e6d41e90909778b7a6.tar.gz dotfiles-9060515734e2963e7c7890e6d41e90909778b7a6.tar.xz |
Add IPFS configuration to NixOS.
Instead of running IPFS daemon manually.
Diffstat (limited to '')
-rw-r--r-- | nixos/configuration.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 8000b60..911731c 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -332,6 +332,13 @@ }; pcscd.enable = true; # required by yubioath + + # https://nixos.org/nixos/options.html#ipfs + ipfs = { + enable = true; + enableGC = true; + autoMount = true; + }; }; security = { |