aboutsummaryrefslogtreecommitdiff
path: root/nixos/machine/spt-mox.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/machine/spt-mox.nix')
-rw-r--r--nixos/machine/spt-mox.nix52
1 files changed, 0 insertions, 52 deletions
diff --git a/nixos/machine/spt-mox.nix b/nixos/machine/spt-mox.nix
deleted file mode 100644
index edeae8a..0000000
--- a/nixos/machine/spt-mox.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-{config, ...}: {
- deploy = {
- enable = true;
- ssh.host = "mox.spt";
- };
-
- cynerd = {
- home-assistant = true;
- switch = {
- enable = true;
- lanAddress = "${config.cynerd.hosts.spt.mox}/24";
- lanGateway = config.cynerd.hosts.spt.omnia;
- };
- wifiAP.spt = {
- enable = true;
- qca988x = {
- interface = "wls1";
- bssids = ["04:f0:21:24:24:d2" "08:f0:21:24:24:d2"];
- channel = 7;
- };
- };
- };
-
- services.journald.extraConfig = ''
- SystemMaxUse=512M
- '';
-
- services.btrfs.autoScrub = {
- enable = true;
- fileSystems = ["/"];
- };
-
- networking = {
- useNetworkd = true;
- useDHCP = false;
- };
- systemd.network.networks = {
- "lan-brlan" = {
- matchConfig.Name = "lan* end0";
- networkConfig.Bridge = "brlan";
- bridgeVLANs = [
- {
- bridgeVLANConfig = {
- EgressUntagged = 1;
- PVID = 1;
- };
- }
- {bridgeVLANConfig.VLAN = 2;}
- ];
- };
- };
-}