summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/latte
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/1systems/latte')
-rw-r--r--makefu/1systems/latte/1blu/default.nix50
-rw-r--r--makefu/1systems/latte/1blu/network.nix32
-rw-r--r--makefu/1systems/latte/config.nix66
-rw-r--r--makefu/1systems/latte/source.nix5
4 files changed, 0 insertions, 153 deletions
diff --git a/makefu/1systems/latte/1blu/default.nix b/makefu/1systems/latte/1blu/default.nix
deleted file mode 100644
index 50cd9204..00000000
--- a/makefu/1systems/latte/1blu/default.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{ config, lib, pkgs, modulesPath, ... }:
-{
-
- imports =
- [ ./network.nix
- (modulesPath + "/profiles/qemu-guest.nix")
- ];
-
- # Disk
- boot.initrd.availableKernelModules = [ "ata_piix" "virtio_pci" "virtio_scsi" "xhci_pci" "sr_mod" "virtio_blk" ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ ];
- boot.extraModulePackages = [ ];
-
- fileSystems."/" =
- { device = "tank/root";
- fsType = "zfs";
- };
-
- fileSystems."/home" =
- { device = "tank/home";
- fsType = "zfs";
- };
-
- fileSystems."/nix" =
- { device = "tank/nix";
- fsType = "zfs";
- };
-
- fileSystems."/boot" =
- { device = "/dev/disk/by-uuid/AEF3-A486";
- fsType = "vfat";
- };
-
- swapDevices = [ ];
- boot.loader.grub.device = "/dev/vda";
-
- networking.hostId = "3150697c"; # required for zfs use
- boot.tmpOnTmpfs = true;
- boot.supportedFilesystems = [ "zfs" ];
-
- boot.loader.grub.enable = true;
- boot.loader.grub.version = 2;
- boot.loader.grub.copyKernels = true;
- boot.zfs.devNodes = "/dev"; # fixes some virtualmachine issues
- boot.kernelParams = [
- "boot.shell_on_fail"
- "panic=30" "boot.panic_on_fail" # reboot the machine upon fatal boot issues
- ];
-}
diff --git a/makefu/1systems/latte/1blu/network.nix b/makefu/1systems/latte/1blu/network.nix
deleted file mode 100644
index 0a0eac97..00000000
--- a/makefu/1systems/latte/1blu/network.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ config, lib, pkgs, modulesPath, ... }:
-let
- external-mac = "c4:37:72:55:4e:1c";
- external-gw = "178.254.28.1";
- external-ip = "178.254.30.202";
- external-ip6 = "2a00:6800:3:18c::2";
- external-gw6 = "2a00:6800:3::1";
- external-netmask = 22;
- external-netmask6 = 64;
- internal-ip = config.krebs.build.host.nets.retiolum.ip4.addr;
- ext-if = "et0"; # gets renamed on the fly
-in
-{
- services.udev.extraRules = ''
- SUBSYSTEM=="net", ATTR{address}=="${external-mac}", NAME="${ext-if}"
- '';
- networking = {
- interfaces."${ext-if}" = {
- ipv4.addresses = [{
- address = external-ip;
- prefixLength = external-netmask;
- }];
- ipv6.addresses = [{
- address = external-ip6;
- prefixLength = external-netmask6;
- }];
- };
- defaultGateway6 = { address = external-gw6; interface = ext-if; };
- defaultGateway = external-gw;
- nameservers = [ "1.1.1.1" ];
- };
-}
diff --git a/makefu/1systems/latte/config.nix b/makefu/1systems/latte/config.nix
deleted file mode 100644
index 69e401d9..00000000
--- a/makefu/1systems/latte/config.nix
+++ /dev/null
@@ -1,66 +0,0 @@
-{ config, lib, pkgs, ... }:
-let
-
- # external-ip = config.krebs.build.host.nets.internet.ip4.addr;
- # internal-ip = config.krebs.build.host.nets.retiolum.ip4.addr;
- # default-gw = "185.215.224.1";
- # prefixLength = 24;
- # external-mac = "46:5b:fc:f4:44:c9";
- # ext-if = "et0";
-in {
-
- imports = [
- ./1blu
- <stockholm/makefu>
-
- # common
- <stockholm/makefu/2configs/nur.nix>
- <stockholm/makefu/2configs/home-manager>
- <stockholm/makefu/2configs/home-manager/cli.nix>
-
- # Security
- <stockholm/makefu/2configs/sshd-totp.nix>
-
- # Tools
- <stockholm/makefu/2configs/tools/core.nix>
- <stockholm/makefu/2configs/zsh-user.nix>
-
- # NixOS Build
- <stockholm/makefu/2configs/remote-build/slave.nix>
-
- # Storage
- <stockholm/makefu/2configs/share>
- <stockholm/makefu/2configs/share/hetzner-client.nix>
-
- # Services:
- <stockholm/makefu/2configs/nix-community/mediawiki-matrix-bot.nix>
-
- # torrent is managed by gum
- # <stockholm/makefu/2configs/torrent/rtorrent.nix>
-
- ## Web
-
- # local usage:
- <stockholm/makefu/2configs/mosh.nix>
- <stockholm/makefu/2configs/bitlbee.nix>
-
- # Supervision
- <stockholm/makefu/2configs/nix-community/supervision.nix>
-
- # Krebs
- <stockholm/makefu/2configs/tinc/retiolum.nix>
-
- # backup
- <stockholm/makefu/2configs/backup/state.nix>
-
-
- ];
- krebs = {
- enable = true;
- build.host = config.krebs.hosts.latte;
- };
-
- makefu.dl-dir = "/media/cloud/download";
- networking.firewall.allowedTCPPorts = [ 80 443 ];
-
-}
diff --git a/makefu/1systems/latte/source.nix b/makefu/1systems/latte/source.nix
deleted file mode 100644
index 41abecf3..00000000
--- a/makefu/1systems/latte/source.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- name = "latte";
- torrent = true;
- home-manager = true;
-}