mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
20 lines
317 B
Nix
20 lines
317 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib; {
|
|
config.elss.wireguard.interfaces = {
|
|
sellnet = {
|
|
# cough @ name
|
|
servers = {
|
|
metis = {
|
|
localIP = "1";
|
|
publicKey = "bla";
|
|
};
|
|
};
|
|
peers = { };
|
|
|
|
prefix = {
|
|
ipv4 = "192.168.242.";
|
|
};
|
|
};
|
|
};
|
|
}
|