Adding ipfs
This commit is contained in:
parent
fc39b3d258
commit
7bb46d0128
2 changed files with 10 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
[
|
||||
./hardware-configuration.nix
|
||||
./mail.nix
|
||||
./ipfs.nix
|
||||
#./ipv6.nix
|
||||
];
|
||||
|
||||
|
@ -194,6 +195,7 @@
|
|||
'' ];
|
||||
};
|
||||
|
||||
|
||||
services = {
|
||||
avahi.enable = false; # for cups printer discovery
|
||||
udev.packages = with pkgs; [ crda ];
|
||||
|
|
8
ipfs.nix
Normal file
8
ipfs.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.ipfs = {
|
||||
enable = true;
|
||||
enableGC = true;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue