home: change ipfs configs
This commit is contained in:
parent
69e85df884
commit
34bd7182d5
4 changed files with 4 additions and 14 deletions
|
@ -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")
|
||||||
];
|
];
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue