11 lines
157 B
Nix
11 lines
157 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
networking.defaultGateway = {
|
||
|
address = "192.168.1.254";
|
||
|
interface = "eno1";
|
||
|
};
|
||
|
|
||
|
deuxfleurs.site_name = "neptune";
|
||
|
}
|