about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-04-03 02:53:20 +0200
committeraszlig <aszlig@nix.build>2018-04-03 02:53:20 +0200
commit52d24cd24bfa652eef86d85d22743619477c13e8 (patch)
tree0118aac0e03dbbd9cc3f70b864833f9e95ea6134 /machines
parent22779977b697b3f7ed382ec855914387ec2612dc (diff)
machines: Remove arilou
Why do I fix up a machine that doesn't exist anymore?

This was from a time where I had no laptop and was travelling around
with an USB stick in order to have a working environment on other
machines, but that's no longer the case.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'machines')
-rw-r--r--machines/aszlig/arilou.nix42
-rw-r--r--machines/default.nix1
2 files changed, 0 insertions, 43 deletions
diff --git a/machines/aszlig/arilou.nix b/machines/aszlig/arilou.nix
deleted file mode 100644
index a5c24f36..00000000
--- a/machines/aszlig/arilou.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ config, pkgs, lib, modulesPath, ... }:
-
-let
-  rootUUID = "e9c95c74-e4cf-41f6-bb45-baf8dd579217";
-  swapUUID = "4d172959-5cfd-4164-a46e-fa7be0dfd03a";
-  diskID = "usb-Lexar_USB_Flash_Drive_201303211246293590E4-0:0";
-in {
-  vuizvui.user.aszlig.profiles.workstation.enable = true;
-  imports = [ "${modulesPath}/profiles/all-hardware.nix" ];
-
-  boot = {
-    kernelPackages = pkgs.linuxPackages_latest;
-    initrd.kernelModules = [ "fbcon" "usb_storage" ];
-    loader.grub.device = "/dev/disk/by-id/${diskID}";
-    loader.grub.memtest86.enable = true;
-  };
-
-  networking.hostName = "arilou";
-  networking.wireless.enable = lib.mkForce true;
-
-  fileSystems."/".device = "/dev/disk/by-uuid/${rootUUID}";
-  fileSystems."/".fsType = "btrfs";
-  fileSystems."/".options = [
-    "ssd"
-    "space_cache"
-    "compress-force=zlib"
-    "noatime"
-  ];
-
-  fileSystems."/tmp".device = "none";
-  fileSystems."/tmp".fsType = "tmpfs";
-  fileSystems."/tmp".options = [ "nosuid" "nodev" "relatime" ];
-
-  swapDevices = lib.singleton {
-    device = "/dev/disk/by-uuid/${swapUUID}";
-  };
-
-  services.openssh.enable = lib.mkForce false;
-  services.xserver.videoDrivers = [ "intel" "ati" "nouveau" ];
-
-  nix.maxJobs = lib.mkForce 2;
-}
diff --git a/machines/default.nix b/machines/default.nix
index 151576f8..840d42c4 100644
--- a/machines/default.nix
+++ b/machines/default.nix
@@ -3,7 +3,6 @@ with import ../lib;
 {
   aszlig = {
     dnyarri   = callMachine ./aszlig/dnyarri.nix {};
-    arilou    = callMachine ./aszlig/arilou.nix {};
     kzerza    = callMachine ./aszlig/kzerza.nix {};
     meshuggah = callMachine ./aszlig/meshuggah.nix {};
     tishtushi = callMachine ./aszlig/tishtushi.nix {};