From a48d057700c636666a5e835cbcb0b667848008c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 15 Mar 2024 09:13:05 +0100 Subject: nixos: rework configurations management --- nixos/machine/spt-mox.nix | 52 ----------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 nixos/machine/spt-mox.nix (limited to 'nixos/machine/spt-mox.nix') 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;} - ]; - }; - }; -} -- cgit v1.2.3