Files
nixos/hosts/mm/default.nix
T

186 lines
4.2 KiB
Nix
Raw Normal View History

2023-05-05 11:29:38 -05:00
# Edit this configuration file to define what should be installed on
2023-05-05 15:59:59 -05:00
# your system. Help is available in the configuration.nix(5) man page
2023-05-05 11:29:38 -05:00
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
2023-05-05 15:59:59 -05:00
let
wanInterface = "enp2s0";
lanInterface = "enp1s0";
lanIpAddress = "10.177.1.1";
in
2023-05-05 11:29:38 -05:00
{
2023-05-05 15:59:59 -05:00
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
2023-05-05 11:29:38 -05:00
2023-05-05 12:49:17 -05:00
2023-05-05 15:59:59 -05:00
greg.home = false;
2023-05-05 12:49:17 -05:00
2023-05-05 15:59:59 -05:00
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
2023-05-05 11:29:38 -05:00
2023-05-05 15:59:59 -05:00
networking = {
hostName = "mm";
domain = "mindmazeroom.lan";
2023-05-05 17:30:12 -05:00
#nameservers = [ "127.0.0.53" ];
2023-05-05 15:59:59 -05:00
interfaces = {
"${wanInterface}".useDHCP = true;
"${lanInterface}" = {
useDHCP = false;
ipv4.addresses = [{
address = lanIpAddress;
prefixLength = 24;
}];
};
};
firewall = { # Might not strictly be necessary?
allowedTCPPorts = [ 53 80 443 8123 ]; # 8091 8123
2023-05-05 15:59:59 -05:00
allowedUDPPorts = [ 53 67 ];
};
extraHosts = (builtins.concatStringsSep "\n" [
"${lanIpAddress} store.mindmazeroom.com"
]);
2023-05-05 15:59:59 -05:00
};
2023-05-05 11:29:38 -05:00
2023-05-05 15:59:59 -05:00
# Serves as the router, DHCP, and DNS for the site
greg = {
router = {
enable = true;
wan = [ wanInterface "tailscale0" ];
lan = [ lanInterface ];
};
tailscale.enable = true;
proxies = {
"mm.shire-zebra.ts.net".target = "http://127.0.0.1:8123";
"store.mindmazeroom.com".target = "http://127.0.0.1:8123";
};
2023-05-05 15:59:59 -05:00
};
services = {
2023-05-05 17:30:12 -05:00
dnsmasq = {
enable = true;
settings = {
domain = "mindmazeroom.lan";
server = [
"1.1.1.1"
"100.100.100.100"
"8.8.8.8"
];
};
2023-05-05 15:59:59 -05:00
};
create_ap = {
enable = false;
settings = {
INTERNET_IFACE = "";
WIFI_IFACE = "wlan0";
SSID = "MM_Test";
PASSPHRASE = "MindMaze2023";
};
};
home-assistant = {
enable = true;
configDir = "/var/lib/hass";
package = (pkgs.home-assistant.override {
extraComponents = [
"accuweather"
"calendar"
"cast"
"lovelace"
];
}).overrideAttrs (oldAttrs: {
doInstallCheck = false;
});
config = {
logger.default = "info";
default_config = {};
esphome = {}; # Get these things loaded, even if not configured
met = {};
my = {};
tts = [ { platform = "google_translate"; } ];
http = {
use_x_forwarded_for = true;
trusted_proxies = [ "127.0.0.1" "::1" ];
server_host = "127.0.0.1";
};
"automation manual" = [];
"automation ui" = "!include automations.yaml";
"script manual" = [];
"script ui" = "!include scripts.yaml";
"scene manual" = [];
"scene ui" = "!include scenes.yaml";
};
};
2023-05-05 15:59:59 -05:00
kea.dhcp4 = {
enable = true;
settings = {
interfaces-config = {
interfaces = [ lanInterface ];
};
lease-database = {
name = "/var/lib/kea/dhcp4.leases";
persist = true;
type = "memfile";
};
renew-timer = 1000;
rebind-timer = 2000;
valid-lifetime = 4000;
option-data = [{
name = "domain-name-servers";
data = "${lanIpAddress}";
} {
name = "routers";
data = "10.177.1.1";
}];
subnet4 = [{
subnet = "10.177.1.0/24";
pools = [{
pool = "10.177.1.10-10.177.1.250";
}];
reservations = [{
hw-address = "9c:8e:cd:3f:3f:8c";
hostname = "madscientist";
ip-address = "10.177.1.249";
} {
hw-address = "9c:8e:cd:3f:40:a4";
hostname = "saloon";
ip-address = "10.177.1.248";
} {
hw-address = "9c:8e:cd:3f:40:d3";
hostname = "jail";
ip-address = "10.177.1.247";
}];
2023-05-05 15:59:59 -05:00
}];
};
};
2023-05-05 11:29:38 -05:00
2023-05-05 15:59:59 -05:00
# Configure keymap in X11
xserver = {
layout = "us";
xkbVariant = "";
};
};
2023-05-05 11:29:38 -05:00
2023-05-05 15:59:59 -05:00
# Set your time zone.
time.timeZone = "America/Chicago";
2023-05-05 11:29:38 -05:00
2023-05-05 15:59:59 -05:00
# Define a user account. Don't forget to set a password with passwd.
users.users.greg = {
isNormalUser = true;
description = "Greg Hellings";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [];
};
2023-05-05 11:29:38 -05:00
2023-05-05 15:59:59 -05:00
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
2023-05-05 11:29:38 -05:00
2023-05-05 15:59:59 -05:00
environment.systemPackages = with pkgs; [
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget
];
system.stateVersion = "22.05";
2023-05-05 11:29:38 -05:00
}