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.networking.networkmanager.enable "networkmanager")
(lib.mkIf config.virtualisation.docker.enable "docker") (lib.mkIf config.virtualisation.docker.enable "docker")
(lib.mkIf config.services.transmission.enable "transmission") (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 "adbusers")
(lib.mkIf config.programs.adb.enable "plugdev") (lib.mkIf config.programs.adb.enable "plugdev")
]; ];

View file

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

View file

@ -12,7 +12,6 @@
../../shared/gnupg.nix ../../shared/gnupg.nix
../../shared/garbage-collector.nix ../../shared/garbage-collector.nix
../../shared/networking.secret.nix ../../shared/networking.secret.nix
../../shared/ipfs.nix
]; ];
# Configure kernel # 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;
};
}