mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
- added network manager sops module - added wireguard skelleton (wip)
16 lines
259 B
Nix
16 lines
259 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib; {
|
|
config.elss.wireguard.interfaces = {
|
|
sellnet = {
|
|
# cough @ name
|
|
servers = {
|
|
metis = {
|
|
localIP = "1";
|
|
publicKey = "bla";
|
|
};
|
|
};
|
|
peers = { };
|
|
};
|
|
};
|
|
}
|