mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
20 lines
448 B
Nix
20 lines
448 B
Nix
|
{ pkgs, lib, inputs', secret, ... }:
|
||
|
{
|
||
|
networking = {
|
||
|
hostName = "omen";
|
||
|
useDHCP = false;
|
||
|
# interfaces.eno1.useDHCP = true;
|
||
|
hostId = "10c7ffc5";
|
||
|
networkmanager.dns = "none";
|
||
|
nameservers = [ "10.64.2.1" ];
|
||
|
|
||
|
firewall.allowedTCPPorts = [22000];
|
||
|
|
||
|
wireguard.interfaces."wg0" =
|
||
|
secret.wireguard."omen" or { privateKey = ""; };
|
||
|
};
|
||
|
|
||
|
networking.networkmanager.enable = true;
|
||
|
hardware.bluetooth.enable = true;
|
||
|
}
|