mirror of
https://github.com/adrlau/nix-dotfiles.git
synced 2025-01-10 11:11:14 +01:00
11 lines
220 B
Nix
11 lines
220 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
|
|
sops.secrets."openvpn/galadriel/config" = {};
|
|
services.openvpn.servers.galadriel = {
|
|
config = "config ${config.sops.secrets."openvpn/galadriel/config".path}";
|
|
};
|
|
|
|
|
|
}
|