# Changes ## docs: - Add extra tutorial docs ## Features: - Add `pdf combine` to yazi - Add `pdf normalization` to yazi - Add `Markdown to html` to yazi ## Breaking Changes: - Rename sops secret `wireguard/conf` to `wireguard/wg0.conf`: Make sure update your `sops-conf.nix` and secrets file.
12 lines
194 B
Nix
12 lines
194 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
networking = {
|
|
firewall = {
|
|
allowedUDPPorts = [ 51820 ];
|
|
};
|
|
wg-quick.interfaces.wg0.configFile = config.sops.secrets."wireguard/wg0.conf".path;
|
|
};
|
|
}
|