12 lines
146 B
Nix
12 lines
146 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
fudo.slynk.enable = true;
|
|
|
|
networking = {
|
|
interfaces = {
|
|
extif0 = { useDHCP = true; };
|
|
};
|
|
};
|
|
}
|