22 lines
345 B
Nix
22 lines
345 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
virtualisation = {
|
|
oci-containers = {
|
|
backend = "docker";
|
|
};
|
|
docker = {
|
|
enable = true;
|
|
enableOnBoot = true;
|
|
rootless = {
|
|
enable = true;
|
|
setSocketVariable = true;
|
|
};
|
|
};
|
|
};
|
|
imports = [
|
|
./gluetun.nix
|
|
./qbittorrent.nix
|
|
./jdownloader.nix
|
|
];
|
|
}
|