home: change ipfs configs

This commit is contained in:
Dmitriy Pleshevskiy 2024-03-19 16:14:08 +03:00
parent 69e85df884
commit 34bd7182d5
Signed by: pleshevskiy
GPG Key ID: 17041163DA10A9A2
4 changed files with 4 additions and 14 deletions

View File

@ -28,7 +28,7 @@ in
(lib.mkIf config.networking.networkmanager.enable "networkmanager")
(lib.mkIf config.virtualisation.docker.enable "docker")
(lib.mkIf config.services.transmission.enable "transmission")
(lib.mkIf config.services.kubo.enable "ipfs")
(lib.mkIf config.services.kubo.enable config.services.kubo.group)
(lib.mkIf config.programs.adb.enable "adbusers")
(lib.mkIf config.programs.adb.enable "plugdev")
];

View File

@ -54,16 +54,19 @@
libresprite
# playerctl
# office
libreoffice
hunspell
hunspellDicts.ru_RU
hunspellDicts.en_US
# tools
procs
bottom
asciinema # record the terminal
neofetch # command-line system information
bind.dnsutils
kubo # ipfs
# browsers
# ungoogled-chromium

View File

@ -12,7 +12,6 @@
../../shared/gnupg.nix
../../shared/garbage-collector.nix
../../shared/networking.secret.nix
../../shared/ipfs.nix
];
# Configure kernel

View File

@ -1,12 +0,0 @@
{ pkgs, ... }:
{
# Enable ipfs
services.kubo = {
enable = false;
localDiscovery = true;
enableGC = true;
# it doesn't work in stable
package = pkgs.unstable.kubo;
};
}