all repos — nixfiles @ e7ee14c9b2d22379e43e3ab781b8fd9f519dcd16

System and user configuration, managed by nix and home-manager

Remove configuration for marvin
Alan Pearce alan@alanpearce.eu
Wed, 16 Oct 2019 19:43:36 +0200
commit

e7ee14c9b2d22379e43e3ab781b8fd9f519dcd16

parent

4de959a979b253ecc846b01330b407468e9bedc0

3 files changed, 0 insertions(+), 93 deletions(-)

jump to
D system/marvin.nix
@@ -1,33 +0,0 @@-{ config, pkgs, ... }:
-
-{ imports = [
-    ./hardware-configuration.nix
-
-    ./settings/base.nix
-    ./settings/configuration/berlin.nix
-    ./settings/configuration/british-english.nix
-    ./settings/configuration/nix.nix
-    ./settings/configuration/user.nix
-    ./settings/hardware/adb.nix
-    ./settings/hardware/audio.nix
-    ./settings/hardware/qwerty.nix
-    ./settings/hardware/network-manager.nix
-    ./settings/hardware/nitrokey.nix
-    ./settings/hardware/systemd-boot.nix
-    ./settings/hardware/trackball.nix
-    ./settings/hardware/trezor.nix
-    ./settings/machines/x250.nix
-    ./settings/programs/accounting.nix
-    ./settings/programs/i3.nix
-    ./settings/programs/infrastructure.nix
-    ./settings/programs/shell.nix
-    ./settings/services/syncthing.nix
-  ];
-
-  networking = {
-    hostName = "marvin";
-    domain = "alanpearce.eu";
-  };
-
-  system.stateVersion = "18.09";
-}
D system/settings/hardware/synaptics.nix
@@ -1,27 +0,0 @@-{ config, pkgs, ... }:
-
-{ services.xserver = {
-    libinput.enable = false;
-    synaptics = {
-      enable = true;
-
-      accelFactor = "0.04";
-
-      minSpeed = "0.3";
-      maxSpeed = "0.6";
-
-      palmDetect = true;
-      palmMinWidth = 5;
-      palmMinZ = 20;
-
-      twoFingerScroll = true;
-      vertTwoFingerScroll = true;
-      horizTwoFingerScroll = true;
-      additionalOptions = ''
-        Option "RBCornerButton" "3"
-        Option "VertScrollDelta" "-111"
-        Option "HorizScrollDelta" "-111"
-      '';
-    };
-  };
-}
D system/settings/machines/x250.nix
@@ -1,33 +0,0 @@-{ config, pkgs, ... }:
-
-{ boot.extraModulePackages = with config.boot.kernelPackages; [
-    acpi_call
-  ];
-
-  hardware.firmware = with pkgs; [
-    firmwareLinuxNonfree
-  ];
-
-  services.tlp.extraConfig = ''
-    # Newer Thinkpads have a battery firmware
-    # it conflicts with TLP if stop thresholds are set
-    START_CHARGE_THRESH_BAT0=70
-    # STOP_CHARGE_THRESH_BAT0=80
-    START_CHARGE_THRESH_BAT1=70
-    # STOP_CHARGE_THRESH_BAT1=80
-
-    DISK_APM_LEVEL_ON_AC="254 254"
-    DISK_APM_LEVEL_ON_BAT="128 128"
-
-    # One or both of these lines stops disk corruption
-    # when re-attaching to AC whilst on.
-    SATA_LINKPWR_ON_BAT=medium_power
-    SATA_LINKPWR_BLACKLIST="host1"
-  '';
-
-  imports = [
-    ../hardware/synaptics.nix
-    ../hardware/intel-gpu.nix
-    ../hardware/thinkpad.nix
-  ];
-}