all repos — nixfiles @ c74a9e9fefee59a23759de6791b19771316691fc

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

Merge branch 'master' of https://git.alanpearce.eu/nixos-configuration
Alan Pearce alan@alanpearce.eu
Sun, 30 Sep 2018 19:19:08 +0200
commit

c74a9e9fefee59a23759de6791b19771316691fc

parent

5f4723df19ab14b917b98677aa74d20aaf5a6557

M modules/development/base.nixmodules/development/base.nix
@@ -8,6 +8,7 @@ gitAndTools.hub 
     editorconfig-core-c
     multimarkdown
+    go
     gocode
 
     surf
M modules/development/javascript.nixmodules/development/javascript.nix
@@ -4,12 +4,17 @@ { environment.systemPackages = with pkgs.unstable; [     nodejs-8_x
     phantomjs2
     yarn
+
     nodePackages.tern
     nodePackages.node2nix
     nodePackages.nodemon
     nodePackages.javascript-typescript-langserver
     nodePackages.eslint_d
+
+    # npm install may use any of these
+    python2
     nodePackages.node-gyp
-    gnumake
+    nodePackages.node-gyp-build
+    nodePackages.node-pre-gyp
   ];
 }
M modules/hardware/bare-metal.nixmodules/hardware/bare-metal.nix
@@ -11,6 +11,11 @@ ]; 
   hardware.cpu.intel.updateMicrocode = true;
 
+  boot.kernel.sysctl = {
+    "net.ipv4.tcp_allowed_congestion_control" = "illinois reno lp";
+    "net.ipv4.tcp_congestion_control" = "illinois";
+  };
+
   boot.tmpOnTmpfs = true;
 
   fileSystems."/".options = [ "noatime" "nodiratime" ];
M modules/machines/t470s.nixmodules/machines/t470s.nix
@@ -5,6 +5,8 @@ hardware.firmware = with pkgs; [     firmwareLinuxNonfree
   ];
 
+  boot.kernelPackages = pkgs.linuxPackages_4_17;
+
   systemd.services.ModemManager.enable = true;
 
   hardware.pulseaudio.extraConfig = ''
@@ -12,11 +14,11 @@ load-module module-alsa-sink device=hw:0,7   '';
 
   # Try a different acceleration method; maybe it helps with screen corruption
-  services.xserver.deviceSection = ''
-    Option      "AccelMethod"  "sna"
-    Option      "TearFree"     "true"
-    Option      "TripleBuffer" "false"
-  '';
+  # services.xserver.deviceSection = ''
+  #   Option      "AccelMethod"  "sna"
+  #   Option      "TearFree"     "true"
+  #   Option      "TripleBuffer" "false"
+  # '';
 
   services.xserver.monitorSection = ''
     DisplaySize 310 176
M modules/programs/accounting.nixmodules/programs/accounting.nix
@@ -6,5 +6,6 @@ ledger     bean-add
     beancount
     fava
+    reckon
   ];
 }
M modules/satoshipay.nixmodules/satoshipay.nix
@@ -1,4 +1,4 @@-{ config, pkgs, lib, ... }:
+{ config, pkgs, fetchurl, lib, ... }:
 
 { virtualisation = {
     docker = {
@@ -23,11 +23,13 @@   nixpkgs.config.allowUnfree = true;
 
   environment.systemPackages = with pkgs; [
+    openssl
     google-chrome
     docker_compose
     meteor
     minikube
     mongodb-tools
+    s3cmd
     sops
     unstable.google-cloud-sdk
     unstable.kubernetes
@@ -41,6 +43,7 @@   services.mongodb = {
     enable = true;
     replSetName = "rs0";
+    dbpath = "/tmp/mongodb";
   };
   systemd.services.mongodb.wantedBy = lib.mkForce  [];
   systemd.timers.mongodb = {
@@ -65,7 +68,13 @@ }; 
 
   services.printing.drivers = with pkgs; [
-    unstable.cups-toshiba-estudio
+    (cups-toshiba-estudio.overrideAttrs (oldAttrs: {
+      version = "7.89";
+      src = pkgs.fetchurl {
+        url = http://business.toshiba.com/downloads/KB/f1Ulds/15178/TOSHIBA_ColorMFP_CUPS.tar;
+        sha256 = "0qz4r7q55i0adf4fv3aqnfqgi2pz3jb1jixkqm9x6nk4vanyjf4r";
+      };
+    }))
   ];
 
   networking.domain = "satoshipay.io";
M modules/user-interface.nixmodules/user-interface.nix
@@ -43,8 +43,10 @@ mosh     aspell
     aspellDicts.en
 
+    cifs-utils
     hexchat
     signal-desktop
+    nextcloud-client
 
     trash-cli
   ];