Add dtth vpn client and some tools

This commit is contained in:
Natsu Kagami 2023-04-29 16:27:35 +02:00
parent 854d237e18
commit fba4d7b422
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51
4 changed files with 48 additions and 6 deletions

View file

@ -32,10 +32,20 @@ let
services.ratbagd.enable = true;
environment.systemPackages = with pkgs; [ piper ];
};
virtualisation = { pkgs, ... }: mkIf cfg.enable {
virtualisation.podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
virtualisation.oci-containers.backend = "podman";
};
};
in
{
imports = with modules; [ adb ios wlr logitech ];
imports = with modules; [ adb ios wlr logitech virtualisation ];
options.common.linux = {
enable = mkOption {