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