lot of updates. Fix Amnezia.

This commit is contained in:
2025-12-10 13:01:37 +03:00
parent 8c848be9e2
commit 732f6f89a5
8 changed files with 40 additions and 35 deletions
+21
View File
@@ -0,0 +1,21 @@
{ config, lib, pkgs, ... }:
let package = pkgs.amnezia-vpn;
in {
environment.systemPackages = [ package ];
services.dbus.packages = [ package ];
services.resolved.enable = true;
systemd = {
packages = [ package ];
services."AmneziaVPN" = {
wantedBy = [ "multi-user.target" ];
path = with pkgs; [ procps iproute2 sudo ];
};
};
meta.maintainers = with lib.maintainers; [ sund3RRR ];
}