about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2022-08-15 16:21:17 +0200
committeraszlig <aszlig@nix.build>2022-08-15 16:21:17 +0200
commite16ee1a165eab876f885940c95aa0136d0df5541 (patch)
treede196245b29491a678620c2507ab46a971231f94 /machines
parent5d6dce6aee7c5ce178e59f662ae1307228297a37 (diff)
machines/tishtushi: Remove machine config
I already killed that machine on 2022-08-04:

  tishtushi[~]0> cryptsetup erase /dev/sda2

  WARNING!
  ========
  This operation will erase all keyslots on device /dev/sda2.
  Device will become unusable after this operation.

  Are you sure? (Type 'yes' in capital letters): YES
  tishtushi[~]0> cryptsetup erase /dev/sda3

  WARNING!
  ========
  This operation will erase all keyslots on device /dev/sda3.
  Device will become unusable after this operation.

  Are you sure? (Type 'yes' in capital letters): YES

Since some of the hardware was already broken (touchpad, keyboard, HDD,
SSD and webcam), I hardly doubt that I'll use it again so it makes sense
to remove the config here.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'machines')
-rw-r--r--machines/aszlig/tishtushi.nix56
-rw-r--r--machines/default.nix1
2 files changed, 0 insertions, 57 deletions
diff --git a/machines/aszlig/tishtushi.nix b/machines/aszlig/tishtushi.nix
deleted file mode 100644
index ffe2c1f5..00000000
--- a/machines/aszlig/tishtushi.nix
+++ /dev/null
@@ -1,56 +0,0 @@
-{ pkgs, lib, ... }:
-
-{
-  vuizvui.user.aszlig.profiles.workstation.enable = true;
-
-  boot.kernelPackages = pkgs.linuxPackages_latest;
-
-  boot.loader = {
-    grub.enable = true;
-    grub.device =
-      "/dev/disk/by-id/ata-Samsung_SSD_860_EVO_500GB_S3Z2NB0KA77896M";
-    timeout = 1;
-  };
-
-  boot.initrd.availableKernelModules = [ "xxhash_generic" ];
-  boot.initrd.luks.devices = {
-    tishtushi-swap = {
-      device = "/dev/disk/by-uuid/db144d14-9268-4f12-a421-e9c41fc207a3";
-    };
-    tishtushi-root = {
-      device = "/dev/disk/by-uuid/e8eafbdd-6056-41c7-88bc-51bfb8a98e22";
-    };
-  };
-
-  hardware.cpu.intel.updateMicrocode = true;
-
-  networking.hostName = "tishtushi";
-  networking.wireless.enable = lib.mkForce true;
-  networking.interfaces.wlp2s0.useDHCP = true;
-
-  fileSystems."/boot" = {
-    device = "/dev/disk/by-uuid/763a7117-3dbf-4e80-9e63-c7039477ef3d";
-    fsType = "ext4";
-  };
-
-  fileSystems."/" = {
-    device = "/dev/mapper/tishtushi-root";
-    fsType = "btrfs";
-    options = [ "space_cache=v2" "compress=zstd" "noatime" "discard=async" ];
-  };
-
-  swapDevices = lib.singleton {
-    device = "/dev/mapper/tishtushi-swap";
-  };
-
-  services.tlp.enable = true;
-
-  services.xserver.videoDrivers = [ "intel" ];
-  services.xserver.synaptics.enable = true;
-  services.xserver.synaptics.tapButtons = true;
-  services.xserver.synaptics.twoFingerScroll = true;
-  services.xserver.synaptics.vertEdgeScroll = false;
-  services.xserver.synaptics.accelFactor = "0.1";
-
-  nix.maxJobs = 4;
-}
diff --git a/machines/default.nix b/machines/default.nix
index bdb15d23..034330a9 100644
--- a/machines/default.nix
+++ b/machines/default.nix
@@ -5,7 +5,6 @@ with import ../lib;
     dnyarri   = callMachine ./aszlig/dnyarri.nix {};
     meshuggah = callMachine ./aszlig/meshuggah.nix {};
     slylandro = callMachine ./aszlig/slylandro.nix {};
-    tishtushi = callMachine ./aszlig/tishtushi.nix {};
     managed = {
       brawndo = callMachine ./aszlig/managed/brawndo.nix {};
       tyree   = callMachine ./aszlig/managed/tyree.nix {};