about summary refs log tree commit diff
path: root/machines/aszlig
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2021-06-24 03:04:20 +0200
committeraszlig <aszlig@nix.build>2021-06-24 03:04:20 +0200
commit240378dcec205b78b32c329ff02eb9bea8af2c11 (patch)
treea3e22499da8dd80c61ff4ba08bc45b4f878be2c9 /machines/aszlig
parent79018abc160a7dbe007eb3cc5e50cced0ca6fed6 (diff)
machines: Remove slylandro
As mentioned in the initial commit (e73fcff03faed773df2500965cb9c4a4fc),
the machine was only temporary as a substitute for tishtushi.

Since slylandro had a pretty slow dual core CPU and its own quirks, this
was never a long-term solution and for the time being my intentions are
to work with dnyarri's new hardware until I have a less annoying setup
when I'm on the road again.

While writing this message, slylandro just died a gruesome death with
"cryptsetup erase", followed by "blkdiscard" on the whole drive.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'machines/aszlig')
-rw-r--r--machines/aszlig/slylandro.nix54
1 files changed, 0 insertions, 54 deletions
diff --git a/machines/aszlig/slylandro.nix b/machines/aszlig/slylandro.nix
deleted file mode 100644
index b071aeb0..00000000
--- a/machines/aszlig/slylandro.nix
+++ /dev/null
@@ -1,54 +0,0 @@
-{ pkgs, lib, ... }:
-
-{
-  vuizvui.user.aszlig.profiles.workstation.enable = true;
-
-  vuizvui.system.kernel.bfq.enable = true;
-
-  boot = {
-    loader.systemd-boot.enable = true;
-    loader.grub.enable = false;
-    loader.efi.canTouchEfiVariables = true;
-    kernelPackages = pkgs.linuxPackages_latest;
-
-    initrd = {
-      luks.devices = {
-        slylandro-swap = {
-          device = "/dev/disk/by-uuid/6ce7f3a4-64cc-4d5c-a220-662d3d589220";
-        };
-        slylandro-root = {
-          device = "/dev/disk/by-uuid/76ddcc8f-060e-44f9-af08-886d7395e466";
-        };
-      };
-    };
-  };
-
-  hardware.cpu.intel.updateMicrocode = true;
-
-  networking.hostName = "slylandro";
-  networking.wireless.enable = lib.mkForce true;
-  networking.interfaces.enp5s0.useDHCP = true;
-  networking.interfaces.wlp3s0.useDHCP = true;
-
-  fileSystems."/boot" = {
-    device = "/dev/disk/by-uuid/DF3B-267A";
-    fsType = "vfat";
-  };
-
-  fileSystems."/" = {
-    device = "/dev/disk/by-uuid/a96de4ae-60a3-463d-bca3-2ef7f207f8f4";
-    fsType = "btrfs";
-    options = [ "space_cache" "compress=zstd" "noatime" ];
-  };
-
-  swapDevices = lib.singleton {
-    device = "/dev/disk/by-uuid/9c5a118d-656a-4bf5-833a-225bb2c887c4";
-  };
-
-  services.tlp.enable = true;
-
-  services.xserver.videoDrivers = [ "nouveau" "intel" ];
-  services.xserver.libinput.enable = true;
-
-  nix.maxJobs = 4;
-}