forked from Deuxfleurs/nixcfg
10 lines
157 B
Nix
10 lines
157 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking.defaultGateway = {
|
|
address = "192.168.1.254";
|
|
interface = "eno1";
|
|
};
|
|
|
|
deuxfleurs.site_name = "neptune";
|
|
}
|