machines: add local discovery option
This commit is contained in:
parent
d7db72d1cd
commit
15aab14759
3 changed files with 12 additions and 9 deletions
|
@ -10,7 +10,6 @@
|
||||||
../modules/fonts.nix
|
../modules/fonts.nix
|
||||||
../modules/gnupg.nix
|
../modules/gnupg.nix
|
||||||
../modules/nix.nix
|
../modules/nix.nix
|
||||||
../modules/ipfs.nix
|
|
||||||
../modules/garbage-collector.nix
|
../modules/garbage-collector.nix
|
||||||
../modules/networking.secret.nix
|
../modules/networking.secret.nix
|
||||||
];
|
];
|
||||||
|
@ -60,5 +59,11 @@
|
||||||
# Enable the Docker
|
# Enable the Docker
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
|
|
||||||
|
# Enable ipfs
|
||||||
|
services.kubo = {
|
||||||
|
enable = true;
|
||||||
|
localDiscovery = true;
|
||||||
|
};
|
||||||
|
|
||||||
local.nix.enableMyRegistry = true;
|
local.nix.enableMyRegistry = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
../modules/fonts.nix
|
../modules/fonts.nix
|
||||||
../modules/gnupg.nix
|
../modules/gnupg.nix
|
||||||
../modules/nix.nix
|
../modules/nix.nix
|
||||||
../modules/ipfs.nix
|
|
||||||
../modules/garbage-collector.nix
|
../modules/garbage-collector.nix
|
||||||
../modules/networking.secret.nix
|
../modules/networking.secret.nix
|
||||||
];
|
];
|
||||||
|
@ -79,5 +78,11 @@
|
||||||
# Enable the Docker
|
# Enable the Docker
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
|
|
||||||
|
# Enable ipfs
|
||||||
|
services.kubo = {
|
||||||
|
enable = true;
|
||||||
|
localDiscovery = true;
|
||||||
|
};
|
||||||
|
|
||||||
local.nix.enableMyRegistry = true;
|
local.nix.enableMyRegistry = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
services.kubo = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue