about summary refs log tree commit diff
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2017-02-16 03:11:00 +0100
committeraszlig <aszlig@redmoonstudios.org>2017-02-16 03:11:00 +0100
commitb47042d519a0fde0206097c3ed52de40da7af3f7 (patch)
tree2100637099343c9f703ae4fb6d14568b9ca232c2
parentc28fa7d310f161ecfbf5510c6d4b641b37c223d8 (diff)
machines: Remove notsure
This machine hasn't been in use since a year or even longer and the
successor machine (brawndo) is already in use since a while, so we can
safely drop the machine.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
-rw-r--r--machines/aszlig/managed/notsure.nix95
-rw-r--r--machines/default.nix1
2 files changed, 0 insertions, 96 deletions
diff --git a/machines/aszlig/managed/notsure.nix b/machines/aszlig/managed/notsure.nix
deleted file mode 100644
index 7b129839..00000000
--- a/machines/aszlig/managed/notsure.nix
+++ /dev/null
@@ -1,95 +0,0 @@
-{ pkgs, unfreePkgs, unfreeAndNonDistributablePkgs, lib, ... }:
-
-let
-  rootUUID = "ata-WDC_WD7500BPVT-22HXZT3_WD-WX71A9124879";
-
-in {
-  boot = {
-    initrd.availableKernelModules = [ "ehci_pci" "ahci" ];
-    kernelPackages = pkgs.linuxPackages_latest;
-    loader.grub.enable = true;
-    loader.grub.version = 2;
-    loader.grub.device = "/dev/disk/by-id/${rootUUID}";
-  };
-
-  fileSystems."/" = {
-    label = "root";
-    fsType = "btrfs";
-    options = [ "space_cache" "relatime" ];
-  };
-
-  hardware = {
-    enableAllFirmware = true;
-    opengl.s3tcSupport = true;
-    opengl.driSupport32Bit = true;
-    pulseaudio.enable = true;
-  };
-
-  networking = {
-    firewall.enable = false;
-    hostName = "notsure";
-    networkmanager.enable = true;
-  };
-
-  nix.maxJobs = 2;
-
-  nixpkgs.config = {
-    chromium.enablePepperFlash = true;
-    pulseaudio = true;
-  };
-
-  environment.systemPackages = with pkgs; [
-    chromium
-    file
-    gajim
-    gimp
-    git
-    htop
-    kde5.gwenview
-    libreoffice
-    miro
-    mpv
-    opentyrian
-    pavucontrol
-    pulseaudioFull
-    samba
-    unfreePkgs.steam
-    unfreeAndNonDistributablePkgs.skype
-    thunderbird
-    vuizvui.tomahawk
-    wine
-    xpdf
-    youtubeDL
-  ];
-
-  i18n = {
-    consoleFont = "lat9w-16";
-    consoleKeyMap = "de";
-    defaultLocale = "en_US.UTF-8";
-  };
-
-  services = {
-    deluge.enable = true;
-    printing.drivers = [ pkgs.cups-bjnp ];
-    tlp.enable = true;
-
-    xserver = {
-      enable = true;
-      layout = "de";
-      xkbOptions = "eurosign:e";
-
-      displayManager.kdm.enable = true;
-      desktopManager.kde5.enable = true;
-    };
-  };
-
-  swapDevices = lib.singleton { label = "swap"; };
-
-  time.timeZone = "Europe/Berlin";
-
-  vuizvui.user.aszlig.profiles.managed.enable = true;
-  vuizvui.user.aszlig.profiles.managed.mainUser = "dwenola";
-
-  vuizvui.user.aszlig.programs.vim.enable = true;
-  vuizvui.enableGlobalNixpkgsConfig = true;
-}
diff --git a/machines/default.nix b/machines/default.nix
index 3783f52d..3525a3e1 100644
--- a/machines/default.nix
+++ b/machines/default.nix
@@ -10,7 +10,6 @@ with import ../lib;
     tishtushi = callMachine ./aszlig/tishtushi.nix {};
     managed = {
       brawndo = callMachine ./aszlig/managed/brawndo.nix {};
-      notsure = callMachine ./aszlig/managed/notsure.nix {};
       tyree   = callMachine ./aszlig/managed/tyree.nix {};
     };
   };