10 lines
143 B
Nix
10 lines
143 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.universe.programs.amnezia-vpn.enable {
|
|
programs.amnezia-vpn.enable = true;
|
|
};
|
|
}
|