1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00
nixos/common/wireguard.nix
Stefan Ellmauthaler 7c3729693f
Add network functionality
- added network manager sops module
- added wireguard skelleton (wip)
2022-07-19 14:07:07 +02:00

16 lines
259 B
Nix

{ config, pkgs, lib, ... }:
with lib; {
config.elss.wireguard.interfaces = {
sellnet = {
# cough @ name
servers = {
metis = {
localIP = "1";
publicKey = "bla";
};
};
peers = { };
};
};
}