aboutsummaryrefslogtreecommitdiff
path: root/nixos/machine/dean.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/machine/dean.nix')
-rw-r--r--nixos/machine/dean.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/nixos/machine/dean.nix b/nixos/machine/dean.nix
deleted file mode 100644
index 0a97e33..0000000
--- a/nixos/machine/dean.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{pkgs, ...}: {
- cynerd = {
- openvpn = {
- oldpersonal = true;
- };
- monitoring.speedtest = true;
- };
-
- networking = {
- bridges = {
- brlan = {
- interfaces = [
- "eth0"
- "lan1"
- "lan2"
- "lan3"
- "lan4"
- ];
- };
- };
- dhcpcd.allowInterfaces = ["brlan"];
- };
-
- swapDevices = [
- {
- device = "/var/swap";
- priority = 1;
- }
- ];
-
- environment.systemPackages = with pkgs; [
- #openocd
- tio
- ];
-
- # TODO: ubootTools build is broken!
- firmware.environment.enable = false;
-}